forked from outline/rich-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.ts
123 lines (109 loc) · 3.21 KB
/
theme.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
const colors = {
almostBlack: "#181A1B",
lightBlack: "#2F3336",
almostWhite: "#E6E6E6",
white: "#FFF",
white10: "rgba(255, 255, 255, 0.1)",
black: "#000",
black10: "rgba(0, 0, 0, 0.1)",
primary: "#1AB6FF",
greyLight: "#F4F7FA",
grey: "#E8EBED",
greyMid: "#C5CCD3",
greyDark: "#DAE1E9",
};
export const base = {
...colors,
fontFamily:
"-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen, Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif",
fontFamilyMono:
"'SFMono-Regular',Consolas,'Liberation Mono', Menlo, Courier,monospace",
fontWeight: 400,
zIndex: 100,
link: colors.primary,
placeholder: "#B1BECC",
textSecondary: "#4E5C6E",
textLight: colors.white,
textHighlight: "#b3e7ff",
textHighlightForeground: colors.black,
selected: colors.primary,
codeComment: "#6a737d",
codePunctuation: "#5e6687",
codeNumber: "#d73a49",
codeProperty: "#c08b30",
codeTag: "#3d8fd1",
codeString: "#032f62",
codeSelector: "#6679cc",
codeAttr: "#c76b29",
codeEntity: "#22a2c9",
codeKeyword: "#d73a49",
codeFunction: "#6f42c1",
codeStatement: "#22a2c9",
codePlaceholder: "#3d8fd1",
codeInserted: "#202746",
codeImportant: "#c94922",
blockToolbarBackground: colors.white,
blockToolbarTrigger: colors.greyMid,
blockToolbarTriggerIcon: colors.white,
blockToolbarItem: colors.almostBlack,
blockToolbarIcon: undefined,
blockToolbarIconSelected: colors.black,
blockToolbarText: colors.almostBlack,
blockToolbarTextSelected: colors.black,
blockToolbarSelectedBackground: colors.greyMid,
blockToolbarHoverBackground: colors.greyLight,
blockToolbarDivider: colors.greyMid,
noticeInfoBackground: "#F5BE31",
noticeInfoText: colors.almostBlack,
noticeTipBackground: "#9E5CF7",
noticeTipText: colors.white,
noticeWarningBackground: "#FF5C80",
noticeWarningText: colors.white,
};
export const light = {
...base,
background: colors.white,
text: colors.almostBlack,
code: colors.lightBlack,
cursor: colors.black,
divider: colors.greyMid,
toolbarBackground: colors.lightBlack,
toolbarHoverBackground: colors.black,
toolbarInput: colors.white10,
toolbarItem: colors.white,
tableDivider: colors.greyMid,
tableSelected: colors.primary,
tableSelectedBackground: "#E5F7FF",
quote: colors.greyDark,
codeBackground: colors.greyLight,
codeBorder: colors.grey,
horizontalRule: colors.greyMid,
imageErrorBackground: colors.greyLight,
scrollbarBackground: colors.greyLight,
scrollbarThumb: colors.greyMid,
};
export const dark = {
...base,
background: colors.almostBlack,
text: colors.almostWhite,
code: colors.almostWhite,
cursor: colors.white,
divider: "#4E5C6E",
placeholder: "#52657A",
toolbarBackground: colors.white,
toolbarHoverBackground: colors.greyMid,
toolbarInput: colors.black10,
toolbarItem: colors.lightBlack,
tableDivider: colors.lightBlack,
tableSelected: colors.primary,
tableSelectedBackground: "#002333",
quote: colors.greyDark,
codeBackground: colors.black,
codeBorder: colors.lightBlack,
codeString: "#3d8fd1",
horizontalRule: colors.lightBlack,
imageErrorBackground: "rgba(0, 0, 0, 0.5)",
scrollbarBackground: colors.black,
scrollbarThumb: colors.lightBlack,
};
export default light;