-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.css
253 lines (203 loc) · 10.4 KB
/
theme.css
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
@import url(style/module/layout.css); /* 布局 */
@import url(style/module/toolbar.css); /* 顶栏 */
@import url(style/module/dock.css); /* 侧栏和面板 */
@import url(style/module/status.css); /* 底栏 */
@import url(style/module/editor.css); /* 编辑器 */
@import url(style/module/menu.css); /* 菜单、浮窗、弹窗 */
@import url(style/module/tooltip.css); /* 悬浮提示 */
@import url(style/module/tab-bar.css); /* 页签 */
/* TODO 跟最新版的官方主题文件对比一下,把缺少的变量补上 */
/* —————————————————————————— 配色 —————————————————————————— */
/* 明亮主题 */
html[data-theme-mode="light"] {
/* 主色 */
--b3-theme-primary: rgb(126, 121, 0); /* 主题色。各种按钮 */
--b3-theme-primary-light: rgba(165, 157, 51, .54);
--b3-theme-primary-lighter: rgba(165, 157, 51, .38); /* 与白色混合为 rgb(221, 218, 177) ,与 --b3-theme-background rgb(249, 248, 245) 混合后为 rgb(217, 213, 171) */
--b3-theme-primary-lightest: rgba(45, 43, 1, .12); /* 选中块后的高亮。与 --b3-theme-background rgb(249, 248, 245) 混合后为 rgb(225, 223, 216) */
--b3-theme-secondary: #f3a92f;
--b3-theme-background: rgb(249, 248, 245); /* 编辑器。 */
--b3-theme-background-light: rgb(237, 227, 225); /* 侧栏按钮。--b3-theme-surface 与 --b3-list-hover 混合 */
--b3-theme-surface: rgb(249, 238, 237); /* 侧栏面板。 */
--b3-theme-surface-light: rgba(243, 243, 243, .86);
--b3-theme-surface-lighter: #e0e0e0;
--b3-theme-error: #d23f31;
--b3-theme-success: #65b84d;
/* 混合 */
--mix-theme_primary_background: rgb(225, 223, 216); /* --b3-theme-primary-lightest rgba(45, 43, 1, .12) & --b3-theme-background rgb(249, 248, 245) */
/*--mix-theme_background-protyle_code: rgb(238, 237, 235); !* --b3-theme-background rgb(249, 248, 245) & --b3-protyle-code-background rgba(27, 31, 35, .05) *!*/
/*--mix-theme_primary_lightest-theme_background-protyle_code: rgb(215, 214, 207); !* --b3-theme-primary-lightest rgba(45, 43, 1, .12) & --mix-theme_background-protyle_code rgb(238, 237, 235) *!*/
--mix-theme_primary_lightest-list-hover: rgba(8, 8, 3, 0.17); /* --b3-theme-primary-lightest rgba(45, 43, 1, .12) & --b3-list-hover rgba(51, 49, 44, 0.06) */
/* 文字颜色 */
--b3-theme-on-primary: #fff;
--b3-theme-on-secondary: #fff;
--b3-theme-on-background: #222; /* 文本默认颜色 */
--b3-theme-on-surface: #5f6368;
--b3-theme-on-surface-light: rgba(95, 99, 104, .68);
--b3-theme-on-error: #fff;
/* 字体 */
/* --b3-font-family-code: "JetBrainsMono-Regular", mononoki, Consolas, "Liberation Mono", Menlo, Courier, monospace, var(--b3-font-family); */
/* 顶部工具栏 */
--b3-toolbar-background: var(--b3-theme-surface);
--b3-toolbar-blur-background: var(--b3-toolbar-background);
--b3-toolbar-color: var(--b3-theme-on-surface);
--b3-toolbar-hover: var(--b3-theme-background-light);
--b3-toolbar-left-mac: 69px;
/* 线条 */
--b3-border-color: var(--b3-theme-surface-lighter);
--b3-border-radius: 6px;
--b3-border-radius-s: 3px;
--b3-border-radius-b: 12px;
/* 滚动条 */
--b3-scroll-color: rgba(0, 0, 0, .2);
/* 列表 */
--b3-list-hover: rgba(51, 49, 44, 0.06); /* 鼠标悬浮在选项上 */
--b3-list-icon-hover: rgba(51, 49, 44, .1); /* 文档树的文档图标 */
/* 菜单 */
--b3-menu-background: var(--b3-theme-surface);
/* 提示 */
--b3-tooltips-background: #312f35;
--b3-tooltips-color: var(--b3-theme-background-light);
--b3-tooltips-second-color: #7d7c7a;
--b3-tooltips-shadow: 0 2px 8px rgba(0, 0, 0, .1);
/* 为空提示 */
--b3-empty-color: var(--b3-theme-on-surface-light);
/* 遮罩 */
--b3-mask-background: rgba(220, 220, 220, .4);
/* 卡片背景 */
--b3-card-error-color: rgb(97, 26, 21);
--b3-card-error-background: #f5d1cf;
--b3-card-warning-color: rgb(102, 60, 0);
--b3-card-warning-background: #ffe8c8;
--b3-card-info-color: rgb(13, 60, 97);
--b3-card-info-background: #d6eaf9;
--b3-card-success-color: rgb(30, 70, 32);
--b3-card-success-background: #d7eed8;
/* 自定义文字 */
--b3-font-color1: rgb(216, 133, 129); /*浅红*/
--b3-font-color2: rgb(217, 154, 81); /*浅橙*/
--b3-font-color3: rgb(255, 216, 78); /*浅黄*/
--b3-font-color4: rgb(183, 237, 177); /*浅绿*/
--b3-font-color5: rgb(186, 206, 253); /*浅蓝*/
--b3-font-color6: rgb(205, 178, 250); /*浅紫*/
--b3-font-color7: rgb(216, 57, 49); /*红*/
--b3-font-color8: rgb(222, 120, 2); /*橙*/
--b3-font-color9: rgb(220, 155, 4); /*黄*/
--b3-font-color10: rgb(130, 197, 123); /*绿*/
--b3-font-color11: rgb(136, 123, 203); /*蓝*/
--b3-font-color12: rgb(126, 103, 167); /*紫*/
--b3-font-color13: rgb(157, 157, 157); /*灰*/
--b3-font-background1: rgb(253, 226, 226); /*浅红*/
--b3-font-background2: rgb(254, 234, 210); /*浅橙*/
--b3-font-background3: rgb(255, 255, 204); /*浅黄*/
--b3-font-background4: rgb(217, 245, 214); /*浅绿*/
--b3-font-background5: rgb(225, 234, 255); /*浅蓝*/
--b3-font-background6: rgb(236, 226, 254); /*浅紫*/
--b3-font-background7: rgb(251, 191, 188); /*红*/
--b3-font-background8: rgb(254, 212, 164); /*橙*/
--b3-font-background9: rgb(255, 252, 163); /*黄*/
--b3-font-background10: rgb(183, 237, 177); /*绿*/
--b3-font-background11: rgb(186, 206, 253); /*蓝*/
--b3-font-background12: rgb(205, 178, 250); /*紫*/
--b3-font-background13: rgba(232, 233, 235); /*灰*/
--b3-font-background14: rgb(183, 183, 183); /*数据库选项*/
/* 动画效果 */
--b3-transition: all .2s cubic-bezier(0, 0, .2, 1) 0ms;
--b3-width-transition: width .2s cubic-bezier(0, 0, .2, 1) 0ms;
--b3-color-transition: color .2s cubic-bezier(0, 0, .2, 1) 0ms;
--b3-background-transition: background 20ms ease-in 0s;
/* 下拉菜单 */
--b3-select-background: url("data:image/svg+xml;utf8,<svg fill='rgba(95, 99, 104, .68)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right 2px center var(--b3-theme-background);
/* switch */
--b3-switch-background: #e1e3e1;
--b3-switch-border: var(--b3-theme-on-surface-light);
--b3-switch-hover: rgba(31, 31, 31, 0.06);
--b3-switch-checked: #fff;
--b3-switch-checked-background: var(--b3-theme-primary);
--b3-switch-checked-hover: #d3e3fd;
--b3-switch-checked-hover2: rgba(31, 31, 31, .06);
/* 阴影 */
--b3-point-shadow: 0 0 1px 0 rgba(0, 0, 0, .1), 0 0 2px 0 rgba(0, 0, 0, .2);
--b3-dialog-shadow: 0 8px 24px rgba(0, 0, 0, .2);
--b3-button-shadow: 0 5px 5px -3px rgb(0 0 0 / .2), 0 8px 10px 1px rgb(0 0 0 / .14), 0 3px 14px 2px rgb(0 0 0 / .12);
/* 图表颜色 */
--b3-graph-p-point: #076f7e;
--b3-graph-heading-point: #8250df;
--b3-graph-math-point: #80FFA5;
--b3-graph-code-point: #00DDFF;
--b3-graph-table-point: #37A2FF;
--b3-graph-list-point: #FF0087;
--b3-graph-todo-point: #FFBF00;
--b3-graph-olist-point: #b3005f;
--b3-graph-listitem-point: #f65b00;
--b3-graph-bq-point: #8d48e3;
--b3-graph-super-point: #dd79ff;
--b3-graph-doc-point: #202124;
--b3-graph-tag-point: #dbf32f;
--b3-graph-asset-point: #05c091;
--b3-graph-line: #5f6368;
--b3-graph-ref-line: #d23f31;
--b3-graph-tag-line: #5f6b06;
--b3-graph-tag-tag-line: #dbf32f;
--b3-graph-asset-line: #037457;
--b3-graph-hl-point: #f3a92f;
--b3-graph-hl-line: #4285f4;
/* 编辑器搜索颜色 */
--b3-protyle-search-background: #ffe955;
--b3-protyle-search-border-color: #f2e680;
--b3-protyle-search-current-background: #a5d3fe;
/* 代码片段背景 */
--b3-protyle-code-background: rgba(27, 31, 35, .05);
/* 所见即所得行内元素颜色 */
--b3-protyle-inline-strong-color: inherit;
--b3-protyle-inline-em-color: inherit;
--b3-protyle-inline-u-color: inherit;
--b3-protyle-inline-s-color: inherit;
--b3-protyle-inline-link-color: #4285f4;
--b3-protyle-inline-mark-background: rgb(252, 212, 126);
--b3-protyle-inline-mark-color: #202124;
--b3-protyle-inline-tag-color: #5f6368;
--b3-protyle-inline-blockref-color: #8957e5;
--b3-protyle-inline-fileref-color: #21862e;
/* PDF */
--b3-pdf-selection: #d0e9c8;
--sidebar-width: 200px;
--b3-pdf-offset: 0;
--b3-pdf-background1: #f66d5f;
--b3-pdf-background2: #f5822e;
--b3-pdf-background3: #FACA5A;
--b3-pdf-background4: #7CC868;
--b3-pdf-background5: #f888a7;
--b3-pdf-background6: #69B0F2;
--b3-pdf-background7: #C885DA;
--b3-pdf-dark: #212224;
/* 表格 */
--b3-table-even-background: rgba(0, 0, 0, .02);
/* 嵌入块 */
--b3-embed-background: transparent;
/* 引述块 */
--b3-bq-background: transparent;
/* 父块颜色 */
--b3-parent-background: var(--b3-theme-background);
}
/* 暗黑主题 */
/*html[data-theme-mode="dark"] {*/
/* !* TODO *!*/
/*}*/
/* —————————————————————————— 样式 —————————————————————————— */
/* 主体结构*/
/* @import url(/appearance/themes/Whisper/style/module/shrink.css); /* 侧栏 */
/* @import url(/appearance/themes/Whisper/style/module/breadcrumb.css); /* 面包屑 */
/* @import url(/appearance/themes/Whisper/style/module/ordered-list.css); /* 有序列表 */
/* @import url(/appearance/themes/Whisper/style/module/unordered-list.css);/* 无序列表 */
/* @import url(/appearance/themes/Whisper/style/module/h-reminder.css); /* 标题符号 */
/* 引入特性 */
/* @import url(/appearance/themes/Whisper/style/custom/list2map.css); /* 列表转导图 */
/* @import url(/appearance/themes/Whisper/style/custom/list2table.css); /* 列表转表格 */
/* @import url(/appearance/themes/Whisper/style/custom/list2board.css); /* 列表转看板 */
/* @import url(/appearance/themes/Whisper/style/custom/ctrlp.css); /* 搜索分栏 */
/* @import url(/appearance/themes/Whisper/style/custom/bq-callout.css); /* 引述样式 */
/* @import url(/appearance/themes/Whisper/style/custom/progress.css); /* 进度条任务列表 */
/* @import url(/appearance/themes/Whisper/style/custom/list-fold.css); /* 折叠块悬浮弹窗 */
/* @import url(/appearance/themes/Whisper/style/custom/setting.css); /* 自定义功能按钮 */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;200;300;400;500;600;700;800;900&display=swap');