@x-titan/fetcher 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/.obsidian/app.json +7 -0
  2. package/.obsidian/appearance.json +5 -0
  3. package/.obsidian/community-plugins.json +7 -0
  4. package/.obsidian/core-plugins.json +33 -0
  5. package/.obsidian/hotkeys.json +19 -0
  6. package/.obsidian/icons/boxicons.zip +0 -0
  7. package/.obsidian/icons/font-awesome-brands.zip +0 -0
  8. package/.obsidian/icons/font-awesome-regular.zip +0 -0
  9. package/.obsidian/icons/font-awesome-solid.zip +0 -0
  10. package/.obsidian/icons/simple-icons.zip +0 -0
  11. package/.obsidian/plugins/advanced-canvas/main.js +7372 -0
  12. package/.obsidian/plugins/advanced-canvas/manifest.json +11 -0
  13. package/.obsidian/plugins/advanced-canvas/styles.css +508 -0
  14. package/.obsidian/plugins/canvas-mindmap/main.js +8 -0
  15. package/.obsidian/plugins/canvas-mindmap/manifest.json +15 -0
  16. package/.obsidian/plugins/canvas-mindmap/styles.css +29 -0
  17. package/.obsidian/plugins/custom-sidebar-icons/main.js +37831 -0
  18. package/.obsidian/plugins/custom-sidebar-icons/manifest.json +15 -0
  19. package/.obsidian/plugins/custom-sidebar-icons/styles.css +1 -0
  20. package/.obsidian/plugins/iconic/data.json +38 -0
  21. package/.obsidian/plugins/iconic/main.js +9 -0
  22. package/.obsidian/plugins/iconic/manifest.json +10 -0
  23. package/.obsidian/plugins/iconic/styles.css +609 -0
  24. package/.obsidian/plugins/obsidian-excalidraw-plugin/main.js +10 -0
  25. package/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json +12 -0
  26. package/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css +1 -0
  27. package/.obsidian/plugins/obsidian-icon-folder/data.json +31 -0
  28. package/.obsidian/plugins/obsidian-icon-folder/main.js +7158 -0
  29. package/.obsidian/plugins/obsidian-icon-folder/manifest.json +10 -0
  30. package/.obsidian/plugins/obsidian-icon-folder/styles.css +120 -0
  31. package/.obsidian/plugins/obsidian-kanban/main.js +153 -0
  32. package/.obsidian/plugins/obsidian-kanban/manifest.json +11 -0
  33. package/.obsidian/plugins/obsidian-kanban/styles.css +1 -0
  34. package/.obsidian/plugins/table-editor-obsidian/data.json +6 -0
  35. package/.obsidian/plugins/table-editor-obsidian/main.js +236 -0
  36. package/.obsidian/plugins/table-editor-obsidian/manifest.json +17 -0
  37. package/.obsidian/plugins/table-editor-obsidian/styles.css +78 -0
  38. package/.obsidian/snippets/CustomIcon-AutoGen.css +17 -0
  39. package/.obsidian/templates.json +3 -0
  40. package/.obsidian/themes/ASET Simple/.editorconfig +10 -0
  41. package/.obsidian/themes/ASET Simple/.git1/HEAD +1 -0
  42. package/.obsidian/themes/ASET Simple/.git1/config +13 -0
  43. package/.obsidian/themes/ASET Simple/.git1/description +1 -0
  44. package/.obsidian/themes/ASET Simple/.git1/hooks/applypatch-msg.sample +15 -0
  45. package/.obsidian/themes/ASET Simple/.git1/hooks/commit-msg.sample +24 -0
  46. package/.obsidian/themes/ASET Simple/.git1/hooks/fsmonitor-watchman.sample +174 -0
  47. package/.obsidian/themes/ASET Simple/.git1/hooks/post-update.sample +8 -0
  48. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-applypatch.sample +14 -0
  49. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-commit.sample +49 -0
  50. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-merge-commit.sample +13 -0
  51. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-push.sample +53 -0
  52. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-rebase.sample +169 -0
  53. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-receive.sample +24 -0
  54. package/.obsidian/themes/ASET Simple/.git1/hooks/prepare-commit-msg.sample +42 -0
  55. package/.obsidian/themes/ASET Simple/.git1/hooks/push-to-checkout.sample +78 -0
  56. package/.obsidian/themes/ASET Simple/.git1/hooks/sendemail-validate.sample +77 -0
  57. package/.obsidian/themes/ASET Simple/.git1/hooks/update.sample +128 -0
  58. package/.obsidian/themes/ASET Simple/.git1/index +0 -0
  59. package/.obsidian/themes/ASET Simple/.git1/info/exclude +6 -0
  60. package/.obsidian/themes/ASET Simple/.git1/objects/pack/pack-37b1d733e37d8c14f634edcfb396cffa341c1de9.idx +0 -0
  61. package/.obsidian/themes/ASET Simple/.git1/objects/pack/pack-37b1d733e37d8c14f634edcfb396cffa341c1de9.pack +0 -0
  62. package/.obsidian/themes/ASET Simple/.git1/objects/pack/pack-37b1d733e37d8c14f634edcfb396cffa341c1de9.rev +0 -0
  63. package/.obsidian/themes/ASET Simple/.git1/packed-refs +2 -0
  64. package/.obsidian/themes/ASET Simple/.git1/refs/heads/master +1 -0
  65. package/.obsidian/themes/ASET Simple/.git1/refs/remotes/origin/HEAD +1 -0
  66. package/.obsidian/themes/ASET Simple/.github/workflows/release-version.yml +50 -0
  67. package/.obsidian/themes/ASET Simple/README.md +95 -0
  68. package/.obsidian/themes/ASET Simple/manifest.json +7 -0
  69. package/.obsidian/themes/ASET Simple/package.json +7 -0
  70. package/.obsidian/themes/ASET Simple/theme.css +164 -0
  71. package/.obsidian/themes/ASET Simple/version-bump.mjs +26 -0
  72. package/.obsidian/themes/ASET Simple/versions.json +3 -0
  73. package/.obsidian/themes/Atom/manifest.json +6 -0
  74. package/.obsidian/themes/Atom/theme.css +339 -0
  75. package/.obsidian/themes/Borealis/manifest.json +7 -0
  76. package/.obsidian/themes/Borealis/theme.css +1164 -0
  77. package/.obsidian/themes/Cupertino/manifest.json +8 -0
  78. package/.obsidian/themes/Cupertino/theme.css +107 -0
  79. package/.obsidian/themes/Flexoki/manifest.json +7 -0
  80. package/.obsidian/themes/Flexoki/theme.css +82 -0
  81. package/.obsidian/themes/Focus/manifest.json +7 -0
  82. package/.obsidian/themes/Focus/theme.css +1047 -0
  83. package/.obsidian/themes/GitHub Theme/manifest.json +7 -0
  84. package/.obsidian/themes/GitHub Theme/theme.css +1245 -0
  85. package/.obsidian/themes/Minimal/manifest.json +8 -0
  86. package/.obsidian/themes/Minimal/theme.css +2223 -0
  87. package/.obsidian/themes/Notation/manifest.json +6 -0
  88. package/.obsidian/themes/Notation/theme.css +831 -0
  89. package/.obsidian/themes/Notation 2/manifest.json +7 -0
  90. package/.obsidian/themes/Notation 2/theme.css +1887 -0
  91. package/.obsidian/themes/Oreo/manifest.json +7 -0
  92. package/.obsidian/themes/Oreo/theme.css +2242 -0
  93. package/.obsidian/themes/Pure/manifest.json +6 -0
  94. package/.obsidian/themes/Pure/theme.css +288 -0
  95. package/.obsidian/themes/Simple/manifest.json +7 -0
  96. package/.obsidian/themes/Simple/theme.css +1005 -0
  97. package/.obsidian/themes/Sodalite/manifest.json +7 -0
  98. package/.obsidian/themes/Sodalite/theme.css +905 -0
  99. package/.obsidian/themes/Things/manifest.json +7 -0
  100. package/.obsidian/themes/Things/theme.css +1628 -0
  101. package/.obsidian/themes/Vanilla AMOLED/manifest.json +7 -0
  102. package/.obsidian/themes/Vanilla AMOLED/theme.css +25 -0
  103. package/.obsidian/themes/Vanilla AMOLED Color/manifest.json +7 -0
  104. package/.obsidian/themes/Vanilla AMOLED Color/theme.css +49 -0
  105. package/.obsidian/themes/Wikipedia/manifest.json +7 -0
  106. package/.obsidian/themes/Wikipedia/theme.css +1134 -0
  107. package/.obsidian/themes/mono black (monochrome, charcoal)/manifest.json +7 -0
  108. package/.obsidian/themes/mono black (monochrome, charcoal)/theme.css +17 -0
  109. package/.obsidian/workspace.json +218 -0
  110. package/LICENCE +21 -0
  111. package/dist/fetcher.d.ts +17 -0
  112. package/dist/fetcher.d.ts.map +1 -0
  113. package/dist/fetcher.js +54 -0
  114. package/dist/fetcher.js.map +1 -0
  115. package/dist/index.d.ts +6 -0
  116. package/dist/index.d.ts.map +1 -0
  117. package/dist/index.js +25 -0
  118. package/dist/index.js.map +1 -0
  119. package/dist/responses.d.ts +6 -0
  120. package/dist/responses.d.ts.map +1 -0
  121. package/dist/responses.js +23 -0
  122. package/dist/responses.js.map +1 -0
  123. package/dist/types.d.ts +9 -0
  124. package/dist/types.d.ts.map +1 -0
  125. package/dist/types.js +3 -0
  126. package/dist/types.js.map +1 -0
  127. package/dist/utils.d.ts +3 -0
  128. package/dist/utils.d.ts.map +1 -0
  129. package/dist/utils.js +9 -0
  130. package/dist/utils.js.map +1 -0
  131. package/nodemon.json +6 -0
  132. package/package.json +38 -0
  133. package/src/fetcher.ts +68 -0
  134. package/src/index.ts +7 -0
  135. package/src/responses.ts +19 -0
  136. package/src/types.ts +15 -0
  137. package/src/utils.ts +9 -0
  138. package/tsconfig.json +49 -0
  139. package/tsup.config.ts +11 -0
@@ -0,0 +1,2242 @@
1
+ /*
2
+ * This program is free software: you can redistribute it and/or modify
3
+ * it under the terms of the GNU General Public License as published by
4
+ * the Free Software Foundation, either version 3 of the License, or
5
+ * (at your option) any later version.
6
+ *
7
+ * This program is distributed in the hope that it will be useful,
8
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
9
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
+ * GNU General Public License for more details.
11
+ *
12
+ * You should have received a copy of the GNU General Public License
13
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
14
+ *
15
+ * Author: Sicheng
16
+ * Date: 2024-07-20
17
+ */
18
+
19
+
20
+ :root {
21
+ /* 图标相关变量 */
22
+ --icon-size: 18px; /* 图标的默认宽度和高度 */
23
+ --icon-stroke: 1.75px; /* 图标的默认描边宽度 */
24
+ /* 图标尺寸 */
25
+ --icon-xs: 14px;
26
+ --icon-s: 16px;
27
+ --icon-m: 18px;
28
+ --icon-l: 24px;
29
+ --icon-xl: 32px;
30
+ --icon-xs-stroke-width: 2px;
31
+ --icon-s-stroke-width: 2px;
32
+ --icon-m-stroke-width: 1.75px;
33
+ --icon-l-stroke-width: 1.75px;
34
+ --icon-xl-stroke-width: 1.25px;
35
+
36
+
37
+ --dialog-width: 600px; /* 对话框默认宽度 */
38
+ --dialog-max-width: 90%; /* 对话框最大宽度 */
39
+ --dialog-max-height: 80%; /* 对话框最大高度 */
40
+ --indentation-guide-width: 1px; /* 缩进引导线宽度 */
41
+ --indentation-guide-width-active: 2px; /* 活动状态下缩进引导线宽度 */
42
+ --indentation-guide-editing-indent: 20px; /* 编辑模式下的缩进宽度 */
43
+ --indentation-guide-reading-indent: 30px; /* 阅读模式下的缩进宽度 */
44
+ --indentation-guide-source-indent: 40px; /* 源代码模式下的缩进宽度 */
45
+ --modal-width: 600px; /* 模态默认宽度 */
46
+ --modal-height: auto; /* 模态默认高度 */
47
+ --modal-max-width: 90%; /* 模态最大宽度 */
48
+ --modal-max-height: 80%; /* 模态最大高度 */
49
+ --modal-max-width-narrow: 400px; /* 窄模态最大宽度 */
50
+ --modal-border-width: 1px; /* 模态边框厚度 */
51
+ --modal-radius: 8px; /* 模态圆角半径 */
52
+ --modal-community-sidebar-width: 250px; /* 社区插件/主题侧边栏宽度 */
53
+ --nav-item-size: 14px; /* 导航项字体大小 */
54
+ --nav-item-color: #000000; /* 导航项文字颜色 */
55
+ --nav-item-color-hover: #333333; /* 导航项悬停时文字颜色 */
56
+ --nav-item-color-active: #0000ff; /* 导航项激活时文字颜色 */
57
+ --nav-item-color-selected: #FF4444; /* 导航项选中时文字颜色 */
58
+ --nav-item-color-highlighted: #00ff00; /* 导航项高亮时文字颜色 */
59
+ --nav-item-background-hover: #f0f0f0; /* 导航项悬停时背景颜色 */
60
+ --nav-item-background-active: #d0d0d0; /* 导航项激活时背景颜色 */
61
+ --nav-item-background-selected: #c0c0c0; /* 导航项选中时背景颜色 */
62
+ --nav-item-padding: 8px; /* 导航项内边距 */
63
+ --nav-item-parent-padding: 10px; /* 父导航项内边距 */
64
+ --nav-item-children-padding-start: 16px; /* 子导航项起始内边距 */
65
+ --nav-item-children-margin-start: 16px; /* 子导航项起始外边距 */
66
+ --nav-item-weight: normal; /* 导航项字体粗细 */
67
+ --nav-item-weight-hover: bold; /* 导航项悬停时字体粗细 */
68
+ --nav-item-weight-active: bold; /* 导航项激活时字体粗细 */
69
+ --nav-item-white-space: nowrap; /* 导航项白空处理 */
70
+ --nav-indentation-guide-width: 1px; /* 缩进引导线宽度 */
71
+ --nav-indentation-guide-color: #cccccc; /* 缩进引导线颜色 */
72
+ --nav-collapse-icon-color: #000000; /* 折叠图标颜色 */
73
+ --nav-collapse-icon-color-collapsed: #555555; /* 折叠图标折叠时颜色 */
74
+
75
+ --nav-heading-color: #000000; /* 导航标题文字颜色 */
76
+ --nav-heading-color-hover: #333333; /* 导航标题悬停时文字颜色 */
77
+ --nav-heading-color-collapsed: #666666; /* 折叠导航标题文字颜色 */
78
+ --nav-heading-color-collapsed-hover: #999999; /* 折叠导航标题悬停时文字颜色 */
79
+ --nav-heading-weight: bold; /* 导航标题字体粗细 */
80
+ --nav-heading-weight-hover: bold; /* 导航标题悬停时字体粗细 */
81
+
82
+ --vault-name-font-size: 18px; /* 保险库名称字体大小 */
83
+ --vault-name-font-weight: bold; /* 保险库名称字体粗细 */
84
+ --vault-name-color: #000000; /* 保险库名称文字颜色 */
85
+ --prompt-input-height: 40px; /* 提示框输入高度 */
86
+ --prompt-width: 600px; /* 提示框宽度 */
87
+ --prompt-max-width: 90%; /* 窄窗口时提示框最大宽度 */
88
+ --prompt-max-height: 80%; /* 提示框最大高度 */
89
+ --prompt-border-width: 2px; /* 提示框边框宽度 */
90
+ --slider-thumb-border-width: 2px; /* 滑块拇指边框宽度 */
91
+ --slider-thumb-height: 20px; /* 滑块拇指高度 */
92
+ --slider-thumb-width: 20px; /* 滑块拇指宽度 */
93
+ --slider-thumb-y: 0; /* 滑块拇指Y轴位置 */
94
+ --slider-thumb-radius: 50%; /* 滑块拇指圆角半径 */
95
+ --slider-track-height: 4px; /* 滑轨高度 */
96
+
97
+ --tab-background-active: #ffffff; /* 活动标签的背景颜色 */
98
+ --tab-text-color: #000000; /* 标签文字颜色 */
99
+ --tab-text-color-active: #333333; /* 非聚焦窗口中活动标签的文字颜色 */
100
+ --tab-text-color-focused: #000000; /* 聚焦窗口中的标签文字颜色 */
101
+ --tab-text-color-focused-active: #ffcc00; /* 聚焦窗口中活动标签的文字颜色 */
102
+ --tab-text-color-focused-highlighted: #00ccff; /* 聚焦窗口中高亮标签的文字颜色 */
103
+ --tab-text-color-focused-active-current: #0000ff; /* 聚焦窗口中当前活动标签的文字颜色 */
104
+ --tab-font-size: 14px; /* 标签字体大小 */
105
+ --tab-font-weight: normal; /* 标签字体粗细 */
106
+ --tab-container-background: #000000; /* 标签容器背景颜色 */
107
+ --tab-divider-color: #666666; /* 标签分隔线颜色 */
108
+ --tab-outline-color: #cccccc; /* 标签轮廓颜色 */
109
+ --tab-outline-width: 2px; /* 标签轮廓宽度 */
110
+ --tab-curve: 5px; /* 标签曲线半径 */
111
+ --tab-radius: 5px; /* 标签外圆角半径 */
112
+ --tab-radius-active: 8px; /* 活动标签外圆角半径 */
113
+ --tab-width: auto; /* 标签默认宽度 */
114
+ --tab-max-width: 200px; /* 标签最大宽度 */
115
+
116
+ /* 堆叠标签 */
117
+ --tab-stacked-pane-width: 200px; /* 堆叠窗格宽度 */
118
+ --tab-stacked-header-width: 50px; /* 堆叠标题宽度 */
119
+ --tab-stacked-font-size: 12px; /* 堆叠标签字体大小 */
120
+ --tab-stacked-font-weight: bold; /* 堆叠标签字体粗细 */
121
+ --tab-stacked-text-align: center; /* 堆叠标签文字对齐方式 */
122
+ --tab-stacked-text-transform: uppercase; /* 堆叠标签文字转换 */
123
+ --tab-stacked-text-writing-mode: vertical-rl; /* 堆叠标签文字书写模式 */
124
+ --tab-stacked-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 堆叠标签阴影 */
125
+ --input-height: 40px; /* 输入框高度 */
126
+ --input-radius: 5px; /* 输入框圆角半径 */
127
+ --input-font-weight: normal; /* 输入框字体粗细 */
128
+ --input-border-width: 2px; /* 输入框边框宽度 */
129
+ --toggle-border-width: 2px; /* Toggle 边框宽度 */
130
+ --toggle-width: 40px; /* Toggle 宽度 */
131
+ --toggle-radius: 20px; /* Toggle 圆角半径 */
132
+ --toggle-thumb-color: #ffffff; /* Toggle 拇指背景颜色 */
133
+ --toggle-thumb-radius: 50%; /* Toggle 拇指圆角半径 */
134
+ --toggle-thumb-height: 20px; /* Toggle 拇指高度 */
135
+ --toggle-thumb-width: 20px; /* Toggle 拇指宽度 */
136
+ --toggle-s-border-width: 1px; /* 小 Toggle 边框宽度 */
137
+ --toggle-s-width: 20px; /* 小 Toggle 宽度 */
138
+ --toggle-s-thumb-height: 10px; /* 小 Toggle 拇指高度 */
139
+ --toggle-s-thumb-width: 10px; /* 小 Toggle 拇指宽度 */
140
+ --embed-block-shadow-hover: 0 4px 8px rgba(0, 0, 0, 0.2); /* Live Preview中渲染的嵌入块悬停时的阴影 */
141
+ --blockquote-border-thickness: 4px; /* 引用块左侧边框厚度 */
142
+ --blockquote-font-style: italic; /* 引用块字体样式(如:正常、斜体) */
143
+ --callout-border-width: 2px; /* Callout 边框宽度 */
144
+ --callout-border-opacity: 1; /* Callout 边框透明度 */
145
+ --callout-padding: 16px; /* Callout 内边距 */
146
+ --callout-radius: 8px; /* Callout 圆角半径 */
147
+ --callout-blend-mode: normal; /* Callout 混合模式,允许嵌套 callout 进行颜色混合 */
148
+ --callout-title-color: #000000; /* Callout 标题文字颜色 */
149
+ --callout-title-padding: 8px; /* Callout 标题内边距 */
150
+ --callout-title-size: 1.2em; /* Callout 标题字体大小 */
151
+ --callout-title-weight: bold; /* Callout 标题字体粗细 */
152
+ --callout-content-padding: 12px; /* Callout 内容内边距 */
153
+
154
+
155
+ --callout-bug: #ff4444; /* bug 类型 callout 颜色 */
156
+ --callout-default: #d9d9d9; /* default/note 类型 callout 颜色 */
157
+ --callout-error: #ff0000; /* error/danger 类型 callout 颜色 */
158
+ --callout-example: #e6e6ff; /* example 类型 callout 颜色 */
159
+ --callout-fail: #ff6666; /* fail/failure/missing 类型 callout 颜色 */
160
+ --callout-important: #ffcc00; /* important 类型 callout 颜色 */
161
+ --callout-info: #33ccff; /* info 类型 callout 颜色 */
162
+ --callout-question: #3399ff; /* question/help/faq 类型 callout 颜色 */
163
+ --callout-success: #66cc66; /* success/check/done 类型 callout 颜色 */
164
+ --callout-summary: #cccccc; /* summary/abstract/tldr 类型 callout 颜色 */
165
+ --callout-tip: #99cc00; /* tip/hint 类型 callout 颜色 */
166
+ --callout-todo: #ffcc66; /* todo 类型 callout 颜色 */
167
+ --callout-warning: #ff9900; /* warning/caution/attention 类型 callout 颜色 */
168
+ --callout-quote: #ffcc99; /* quote/cite 类型 callout 颜色 */
169
+ --code-white-space: pre; /* 代码 white-space 属性 */
170
+ --code-size: 14px; /* 代码字体大小 */
171
+ --embed-max-height: 500px; /* 嵌入文件的最大高度 */
172
+ --embed-canvas-max-height: 400px; /* 嵌入 Canvas 元素的最大高度 */
173
+ --embed-background: #f9f9f9; /* 嵌入文件的背景颜色 */
174
+ --embed-border-end: 1px solid #cccccc; /* 嵌入文件的右边框 */
175
+ --embed-border-start: 1px solid #cccccc; /* 嵌入文件的左边框 */
176
+ --embed-border-top: 1px solid #cccccc; /* 嵌入文件的上边框 */
177
+ --embed-border-bottom: 1px solid #cccccc; /* 嵌入文件的下边框 */
178
+ --embed-padding: 10px; /* 嵌入文件的内边距 */
179
+ --embed-font-style: italic; /* 嵌入文件的字体样式 */
180
+ --file-line-width: 800px; /* 当启用可读行宽时的行宽 */
181
+ --file-folding-offset: 20px; /* 折叠指示器的行偏移宽度 */
182
+ --file-margins: 20px; /* 文件边距 */
183
+ --file-header-font-size: 1.5em; /* 文件头部字体大小 */
184
+ --file-header-font-weight: bold; /* 文件头部字体粗细 */
185
+ --file-header-border: 1px solid #cccccc; /* 文件头部的下边框属性 */
186
+ --file-header-justify: space-between; /* 文件头部文本对齐方式,使用 justify-content 属性 */
187
+ --footnote-size: 0.8em; /* 脚注字体大小 */
188
+ --list-indent: 20px; /* 嵌套项目的缩进宽度 */
189
+ --list-indent-editing: 20px; /* 实时预览模式下的缩进宽度 */
190
+ --list-indent-source: 20px; /* 源代码模式下的缩进宽度 */
191
+ --list-spacing: 10px; /* 列表项之间的垂直间距 */
192
+ --list-bullet-end-padding: 5px; /* 项目符号后的内边距 */
193
+ --list-bullet-radius: 50%; /* 项目符号的圆角半径 */
194
+ --list-bullet-size: 10px; /* 项目符号的宽度/高度 */
195
+ --list-bullet-transform: scale(1); /* 项目符号的变换属性 */
196
+ --list-numbered-style: decimal; /* 有序列表的列表样式类型 */
197
+ /* Properties container */
198
+ --metadata-background: #f0f0f0; /* 属性容器背景颜色 */
199
+ --metadata-display-editing: block; /* 编辑模式下显示 */
200
+ --metadata-display-reading: block; /* 阅读模式下显示 */
201
+ --metadata-max-width: 800px; /* 最大宽度 */
202
+ --metadata-padding: 10px; /* 内边距 */
203
+ --metadata-border-color: #cccccc; /* 边框颜色 */
204
+ --metadata-border-radius: 8px; /* 圆角半径 */
205
+ --metadata-border-width: 1px; /* 边框宽度 */
206
+ --metadata-gap: 10px; /* 属性之间的间距 */
207
+
208
+ /* Individual properties */
209
+ --metadata-divider-color: #cccccc; /* 属性之间分隔线颜色 */
210
+ --metadata-divider-color-hover: #aaaaaa; /* 属性悬停时分隔线颜色 */
211
+ --metadata-divider-color-focus: #888888; /* 属性聚焦时分隔线颜色 */
212
+ --metadata-divider-width: 1px; /* 分隔线宽度 */
213
+ --metadata-property-padding: 5px; /* 属性内边距 */
214
+ --metadata-property-radius: 4px; /* 属性圆角半径 */
215
+ --metadata-property-radius-hover: 4px; /* 属性悬停时圆角半径 */
216
+ --metadata-property-radius-focus: 4px; /* 属性聚焦时圆角半径 */
217
+ --metadata-property-background: #ffffff; /* 属性背景颜色 */
218
+ --metadata-property-background-hover: #f9f9f9; /* 属性悬停时背景颜色 */
219
+ --metadata-property-background-active: #f0f0f0; /* 属性激活时背景颜色 */
220
+ --metadata-label-background-hover: #f0f0f0; /* 属性标签悬停时背景颜色 */
221
+ --metadata-label-background-active: #e0e0e0; /* 属性标签激活时背景颜色 */
222
+ --metadata-label-font-size: 14px; /* 属性标签字体大小 */
223
+ --metadata-label-font-weight: bold; /* 属性标签字体粗细 */
224
+ --metadata-sidebar-label-font-size: 12px; /* 侧边栏属性标签字体大小 */
225
+ --metadata-label-text-color: #333333; /* 属性标签文字颜色 */
226
+ --metadata-label-text-color-hover: #555555; /* 属性标签悬停时文字颜色 */
227
+ --metadata-label-width: 150px; /* 属性标签宽度 */
228
+ --metadata-input-height: 30px; /* 属性输入框高度 */
229
+ --metadata-input-text-color: #000000; /* 属性输入框文字颜色 */
230
+ --metadata-input-font-size: 14px; /* 属性输入框字体大小 */
231
+ --metadata-sidebar-input-font-size: 12px; /* 侧边栏属性输入框字体大小 */
232
+ --metadata-input-background: #ffffff; /* 属性输入框背景颜色 */
233
+ --metadata-input-background-hover: #f9f9f9; /* 属性输入框悬停时背景颜色 */
234
+ --metadata-input-background-active: #f0f0f0; /* 属性输入框激活时背景颜色 */
235
+ --tag-size: 12px; /* 标签字体大小 */
236
+ --tag-color: #000000; /* 标签文字颜色 */
237
+ --tag-color-hover: #333333; /* 标签悬停时文字颜色 */
238
+ --tag-decoration: none; /* 标签文字装饰 */
239
+ --tag-decoration-hover: underline; /* 标签悬停时文字装饰 */
240
+ --tag-background: #f0f0f0; /* 标签背景颜色 */
241
+ --tag-background-hover: #e0e0e0; /* 标签悬停时背景颜色 */
242
+ --tag-border-color: #cccccc; /* 标签边框颜色 */
243
+ --tag-border-color-hover: #999999; /* 标签悬停时边框颜色 */
244
+ --tag-border-width: 1px; /* 标签边框宽度 */
245
+ --tag-padding-x: 5px; /* 标签左右内边距 */
246
+ --tag-padding-y: 2px; /* 标签上下内边距 */
247
+ --tag-radius: 4px; /* 标签圆角半径 */
248
+ --tag-weight: bold; /* 标签字体粗细 */
249
+ /* 字体设置 */
250
+ --font-interface-theme: "Arial", sans-serif; /* 用于UI元素的字体 */
251
+ --font-text-theme: "Georgia", serif; /* 用于编辑器中文本的字体 */
252
+ --font-monospace-theme: "Courier New", monospace; /* 用于等宽内容的字体,如代码块和行内代码 */
253
+
254
+ /* 字体大小 */
255
+ --font-text-size: 16px; /* 编辑器字体大小,由用户在外观设置中定义 */
256
+ --font-smallest: 0.8em; /* 最小字体大小 */
257
+ --font-smaller: 0.875em; /* 较小字体大小 */
258
+ --font-small: 0.933em; /* 小字体大小 */
259
+ --font-ui-smaller: 12px; /* UI元素较小字体大小 */
260
+ --font-ui-small: 13px; /* UI元素小字体大小 */
261
+ --font-ui-medium: 15px; /* UI元素中等字体大小 */
262
+ --font-ui-larger: 20px; /* UI元素较大字体大小 */
263
+
264
+ /* 字体粗细 */
265
+ --font-thin: 100; /* 极细字体粗细 */
266
+ --font-extralight: 200; /* 额外细字体粗细 */
267
+ --font-light: 300; /* 细字体粗细 */
268
+ --font-normal: 400; /* 常规字体粗细 */
269
+ --font-medium: 500; /* 中等字体粗细 */
270
+ --font-semibold: 600; /* 半粗字体粗细 */
271
+ --font-bold: 700; /* 粗字体粗细 */
272
+ --font-extrabold: 800; /* 额外粗字体粗细 */
273
+ --font-black: 900; /* 极粗字体粗细 */
274
+
275
+ /* 文本格式化 */
276
+ --font-weight: var(--font-normal); /* 常规文本粗细 */
277
+ --bold-modifier: 200; /* 加粗文本的额外权重 */
278
+ --bold-weight: calc(var(--font-weight) + var(--bold-modifier)); /* 加粗文本的字体粗细 */
279
+ --bold-color: #000000; /* 加粗文本颜色 */
280
+ --italic-color: #000000; /* 斜体文本颜色 */
281
+
282
+ /* 行高 */
283
+ --line-height-normal: 1.5; /* 默认行高 */
284
+ --line-height-tight: 1.3; /* 紧凑行高,用于搜索结果、树状项目、工具提示等较小空间 */
285
+
286
+ /* 段落间距 */
287
+ --heading-spacing: 20px; /* 标题上方的间距 */
288
+ --p-spacing: 10px; /* 段落之间的间距 */
289
+ --divider-width: 3px; /* 分隔线边框宽度 */
290
+ --divider-width-hover: 2px; /* 分隔线悬停时边框宽度 */
291
+ --divider-vertical-height: 80%; /* 垂直分隔线高度 */
292
+
293
+ --ribbon-width: 50px; /* Ribbon 宽度 */
294
+ --ribbon-padding: 10px; /* Ribbon 内边距 */
295
+ --sidebar-markdown-font-size: 14px; /* 侧边栏中Markdown文件的字体大小 */
296
+ --sidebar-tab-text-display: block; /* 侧边栏中选项卡文本的display属性 */
297
+ --status-bar-border-width: 1px; /* 状态栏边框宽度 */
298
+ --status-bar-font-size: 12px; /* 状态栏字体大小 */
299
+ --status-bar-position: fixed; /* 状态栏位置属性 */
300
+ --status-bar-radius: 4px; /* 状态栏圆角半径 */
301
+ --status-bar-scroll-padding: 10px; /* 状态栏滚动内边距 */
302
+ --titlebar-border-width: 1px; /* 标题栏边框宽度 */
303
+ --titlebar-text-weight: bold; /* 标题栏字体粗细 */
304
+ --header-height: 30px; /* 框架元素的默认高度 */
305
+
306
+ }
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+ body {
317
+ --checkbox-radius: 50%; /* 复选框的圆角半径 */
318
+ --checkbox-size: 16px; /* 复选框的大小 */
319
+ --checkbox-margin-inline-start: 8px; /* 复选框的起始内边距 */
320
+ --button-radius:10px;
321
+ --popover-width: 300px; /* 弹出框默认宽度 */
322
+ --popover-height: auto; /* 弹出框默认高度 */
323
+ --popover-max-height: 400px; /* 弹出框最大高度 */
324
+ --popover-font-size: 14px; /* 弹出框字体大小 */
325
+ --popover-pdf-width: 600px; /* PDF文件预览宽度 */
326
+ --popover-pdf-height: 800px; /* PDF文件预览高度 */
327
+ --heading-spacing: 20px; /* 头部上方的间距 */
328
+
329
+ --h1-font: "Arial", sans-serif; /* H1 字体 */
330
+ --h2-font: "Arial", sans-serif; /* H2 字体 */
331
+ --h3-font: "Arial", sans-serif; /* H3 字体 */
332
+ --h4-font: "Arial", sans-serif; /* H4 字体 */
333
+ --h5-font: "Arial", sans-serif; /* H5 字体 */
334
+ --h6-font: "Arial", sans-serif; /* H6 字体 */
335
+
336
+ --h1-line-height: 1.5; /* H1 行高 */
337
+ --h2-line-height: 1.5; /* H2 行高 */
338
+ --h3-line-height: 1.5; /* H3 行高 */
339
+ --h4-line-height: 1.5; /* H4 行高 */
340
+ --h5-line-height: 1.5; /* H5 行高 */
341
+ --h6-line-height: 1.5; /* H6 行高 */
342
+
343
+ --h1-size: 2em; /* H1 字体大小 */
344
+ --h2-size: 1.75em; /* H2 字体大小 */
345
+ --h3-size: 1.5em; /* H3 字体大小 */
346
+ --h4-size: 1.25em; /* H4 字体大小 */
347
+ --h5-size: 1em; /* H5 字体大小 */
348
+ --h6-size: 0.875em; /* H6 字体大小 */
349
+
350
+ --h1-style: normal; /* H1 字体样式 */
351
+ --h2-style: normal; /* H2 字体样式 */
352
+ --h3-style: normal; /* H3 字体样式 */
353
+ --h4-style: normal; /* H4 字体样式 */
354
+ --h5-style: normal; /* H5 字体样式 */
355
+ --h6-style: normal; /* H6 字体样式 */
356
+
357
+ --h1-variant: normal; /* H1 字体变体 */
358
+ --h2-variant: normal; /* H2 字体变体 */
359
+ --h3-variant: normal; /* H3 字体变体 */
360
+ --h4-variant: normal; /* H4 字体变体 */
361
+ --h5-variant: normal; /* H5 字体变体 */
362
+ --h6-variant: normal; /* H6 字体变体 */
363
+
364
+ --h1-weight: bold; /* H1 字体粗细 */
365
+ --h2-weight: bold; /* H2 字体粗细 */
366
+ --h3-weight: bold; /* H3 字体粗细 */
367
+ --h4-weight: bold; /* H4 字体粗细 */
368
+ --h5-weight: bold; /* H5 字体粗细 */
369
+ --h6-weight: bold; /* H6 字体粗细 */
370
+ --heading-formatting: #888888; /* Markdown 头部深度语法的文字颜色 */
371
+ --link-color: #1e90ff; /* 已解析链接文字颜色 */
372
+ --link-color-hover: #1c86ee; /* 已解析链接悬停时文字颜色 */
373
+ --link-decoration: underline; /* 已解析链接文字装饰 */
374
+ --link-decoration-hover: underline; /* 已解析链接悬停时文字装饰 */
375
+ --link-decoration-thickness: 1px; /* 已解析链接文字装饰厚度 */
376
+ --link-weight: normal; /* 链接字体粗细 */
377
+
378
+ --link-unresolved-color: #ff4500; /* 未解析链接文字颜色 */
379
+ --link-unresolved-opacity: 0.7; /* 未解析链接不透明度 */
380
+ --link-unresolved-filter: brightness(0.8); /* 未解析链接滤镜效果 */
381
+ --link-unresolved-decoration-style: dashed; /* 未解析链接文字装饰样式 */
382
+ --link-unresolved-decoration-color: #ff4500; /* 未解析链接文字装饰颜色 */
383
+
384
+ --link-external-color: #32cd32; /* 外部链接文字颜色 */
385
+ --link-external-color-hover: #2eb82e; /* 外部链接悬停时文字颜色 */
386
+ --link-external-decoration: underline; /* 外部链接文字装饰 */
387
+ --link-external-decoration-hover: underline; /* 外部链接悬停时文字装饰 */
388
+ --inline-title-color: #000000; /* 行内标题文字颜色 */
389
+ --inline-title-font: "Arial", sans-serif; /* 行内标题字体 */
390
+ --inline-title-line-height: 1.5; /* 行内标题行高 */
391
+ --inline-title-size: 1.2em; /* 行内标题字体大小 */
392
+ --inline-title-style: normal; /* 行内标题字体样式 */
393
+ --inline-title-variant: normal; /* 行内标题字体变体 */
394
+ --inline-title-weight: bold; /* 行内标题字体粗细 */
395
+ --table-header-size: inherit;
396
+
397
+ }
398
+
399
+ .theme-light {
400
+ --interactive-normal: #e6e6e6; /* 浅灰色 */
401
+ --interactive-hover: #cccccc; /* 中灰色 */
402
+ --interactive-accent: #999999; /* 中灰色 */
403
+ --interactive-accent-hsl: hsl(0, 0%, 60%); /* 中灰色的HSL表示 */
404
+ --interactive-accent-hover: #666666; /* 深灰色 */
405
+ --checkbox-marker-color: white; /* 复选框标记的颜色 */
406
+ --checkbox-color: #e6e6e6; /* 复选框的背景颜色 */
407
+ --checkbox-color-hover: #cccccc; /* 复选框的背景颜色 (hover) */
408
+ --checkbox-border-color: #999999; /* 未选中的边框颜色 */
409
+ --checkbox-border-color-hover: #666666; /* 未选中的边框颜色 (hover) */
410
+ --checklist-done-decoration: line-through; /* 已完成项的文本装饰 */
411
+ --checklist-done-color: #cccccc; /* 已完成项的文本颜色 */
412
+ --swatch-radius: 4px; /* 色样的圆角半径 */
413
+ --swatch-height: 20px; /* 色样的高度 */
414
+ --swatch-width: 20px; /* 色样的宽度 */
415
+ --swatch-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* 色样的阴影 */
416
+ --icon-color: #000000; /* 图标颜色 */
417
+ --icon-color-hover: #555555; /* 悬停时的图标颜色 */
418
+ --icon-color-active: #333333; /* 激活时的图标颜色 */
419
+ --icon-color-focused: #777777; /* 聚焦时的图标颜色 */
420
+ --icon-opacity: 1; /* 图标透明度 */
421
+ --icon-opacity-hover: 0.8; /* 悬停时的图标透明度 */
422
+ --icon-opacity-active: 0.6; /* 激活时的图标透明度 */
423
+ --drag-ghost-background: rgba(255, 255, 255, 0.8); /* 拖动虚影背景颜色 */
424
+ --drag-ghost-text-color: #000000; /* 拖动虚影文本颜色 */
425
+ --indentation-guide-color: #cccccc; /* 亮模式下缩进引导线颜色 */
426
+ --indentation-guide-color-active: #ffcc00; /* 亮模式下活动状态缩进引导线颜色 */
427
+ --modal-background: #ffffff; /* 亮模式模态背景颜色 */
428
+ --modal-border-color: #cccccc; /* 亮模式模态边框颜色 */
429
+ --pill-color: #000000;
430
+ --pill-color-hover: #333333;
431
+ --pill-color-remove: #FF4444;
432
+ --pill-color-remove-hover: #CC4444;
433
+ --pill-decoration: none;
434
+ --pill-decoration-hover: underline;
435
+ --pill-background: #f0f0f0;
436
+ --pill-background-hover: #e0e0e0;
437
+ --pill-border-color: #cccccc;
438
+ --pill-border-color-hover: #999999;
439
+ --pill-border-width: 1px;
440
+ --pill-padding-x: 8px;
441
+ --pill-padding-y: 4px;
442
+ --pill-radius: 12px;
443
+ --pill-weight: bold;
444
+ --nav-item-color: #000000;
445
+ --nav-item-color-hover: #333333;
446
+ --nav-item-color-active: #7c7cff;
447
+ --nav-item-color-selected: #ff4444;
448
+ --nav-item-color-highlighted: #00ff00;
449
+ --nav-item-background-hover: #f0f0f0;
450
+ --nav-item-background-active: #d0d0d0;
451
+ --nav-item-background-selected: #c0c0c0;
452
+ --nav-indentation-guide-color: #cccccc;
453
+ --nav-collapse-icon-color: #000000;
454
+ --nav-collapse-icon-color-collapsed: #555555;
455
+
456
+ --nav-heading-color: #000000;
457
+ --nav-heading-color-hover: #333333;
458
+ --nav-heading-color-collapsed: #666666;
459
+ --nav-heading-color-collapsed-hover: #999999;
460
+
461
+ --vault-name-color: #000000;
462
+ --prompt-border-color: #cccccc; /* 亮模式下提示框边框颜色 */
463
+ --slider-thumb-border-color: #cccccc; /* 亮模式下滑块拇指边框颜色 */
464
+ --slider-track-background: #e0e0e0; /* 亮模式下滑轨背景颜色 */
465
+ --tab-background-active: #ffffff;
466
+ --tab-text-color: #000000;
467
+ --tab-text-color-active: #333333;
468
+ --tab-text-color-focused: #000000;
469
+ --tab-text-color-focused-active: #ffcc00;
470
+ --tab-text-color-focused-highlighted: #00ccff;
471
+ --tab-text-color-focused-active-current: #7c7cff;
472
+ --tab-container-background: #f0f0f0;
473
+ --tab-divider-color: #666666;
474
+ --tab-outline-color: #cccccc;
475
+ --blockquote-background-color: #f9f9f9; /* 亮模式下引用块背景颜色 */
476
+ --blockquote-border-color: #cccccc; /* 亮模式下引用块左侧边框颜色 */
477
+ --blockquote-color: #333333; /* 亮模式下引用块文字颜色 */
478
+ --callout-title-color: #000000; /* 亮模式下 Callout 标题文字颜色 */
479
+ --code-background: #f5f5f5; /* 亮模式下代码背景颜色 */
480
+ --code-normal: #000000; /* 亮模式下非高亮语法颜色 */
481
+ --code-comment: #6a737d; /* 亮模式下注释颜色 */
482
+ --code-function: #6f42c1; /* 亮模式下函数颜色 */
483
+ --code-important: #d73a49; /* 亮模式下重要内容, 正则表达式颜色 */
484
+ --code-keyword: #d73a49; /* 亮模式下关键词颜色 */
485
+ --code-operator: #d73a49; /* 亮模式下操作符颜色 */
486
+ --code-property: #005cc5; /* 亮模式下属性颜色 */
487
+ --code-punctuation: #24292e; /* 亮模式下标点颜色 */
488
+ --code-string: #032f62; /* 亮模式下字符串颜色 */
489
+ --code-tag: #22863a; /* 亮模式下标签, 符号, 常量颜色 */
490
+ --code-value: #b31d28; /* 亮模式下值颜色 */
491
+ --embed-background: #ffffff; /* 亮模式下嵌入文件的背景颜色 */
492
+ --embed-border-color: #cccccc; /* 亮模式下嵌入文件的边框颜色 */
493
+ --file-header-border-color: #cccccc; /* 亮模式下文件头部的边框颜色 */
494
+ --file-header-color: #000000; /* 亮模式下文件头部的文本颜色 */
495
+ --h1-color: #333333; /* 亮模式 H1 文字颜色 */
496
+ --h2-color: #444444; /* 亮模式 H2 文字颜色 */
497
+ --h3-color: #555555; /* 亮模式 H3 文字颜色 */
498
+ --h4-color: #666666; /* 亮模式 H4 文字颜色 */
499
+ --h5-color: #777777; /* 亮模式 H5 文字颜色 */
500
+ --h6-color: #888888; /* 亮模式 H6 文字颜色 */
501
+ --link-color: #1e90ff;
502
+ --link-color-hover: #1c86ee;
503
+ --link-decoration: underline;
504
+ --link-decoration-hover: underline;
505
+ --link-decoration-thickness: 1px;
506
+ --link-weight: normal;
507
+
508
+ --link-unresolved-color: #ff4500;
509
+ --link-unresolved-opacity: 0.7;
510
+ --link-unresolved-filter: brightness(0.8);
511
+ --link-unresolved-decoration-style: dashed;
512
+ --link-unresolved-decoration-color: #ff4500;
513
+
514
+ --link-external-color: #32cd32;
515
+ --link-external-color-hover: #2eb82e;
516
+ --link-external-decoration: underline;
517
+ --link-external-decoration-hover: underline;
518
+ --list-marker-color: #000000; /* 亮模式下标记颜色 */
519
+ --list-marker-color-hover: #555555; /* 亮模式下悬停时标记颜色 */
520
+ --list-marker-color-collapsed: #999999; /* 亮模式下折叠项目的标记颜色 */
521
+ --list-bullet-border: 2px solid #000000; /* 亮模式下项目符号边框 */
522
+ --hr-color: #000000; /* 亮模式下水平规则边框颜色 */
523
+ --hr-thickness: 2px; /* 亮模式下水平规则边框厚度 */
524
+ --inline-title-color: #000000; /* 亮模式下行内标题文字颜色 */
525
+ --metadata-background: #ffffff;
526
+ --metadata-border-color: #dddddd;
527
+ --metadata-divider-color: #cccccc;
528
+ --metadata-divider-color-hover: #aaaaaa;
529
+ --metadata-divider-color-focus: #888888;
530
+ --metadata-property-background: #ffffff;
531
+ --metadata-property-background-hover: #f9f9f9;
532
+ --metadata-property-background-active: #f0f0f0;
533
+ --metadata-label-text-color: #333333;
534
+ --metadata-label-text-color-hover: #555555;
535
+ --metadata-input-text-color: #000000;
536
+ --metadata-input-background: #ffffff;
537
+ --metadata-input-background-hover: #f9f9f9;
538
+ --metadata-input-background-active: #f0f0f0;
539
+ --tag-color: #000000;
540
+ --tag-color-hover: #333333;
541
+ --tag-background: #f0f0f0;
542
+ --tag-background-hover: #e0e0e0;
543
+ --tag-border-color: #cccccc;
544
+ --tag-border-color-hover: #999999;
545
+ --divider-color: #cccccc; /* 亮模式下分隔线边框颜色 */
546
+ --divider-color-hover: #999999; /* 亮模式下分隔线悬停时边框颜色 */
547
+ --ribbon-background: #f0f0f0; /* 亮模式下的 Ribbon 背景颜色 */
548
+ --ribbon-background-collapsed: #e0e0e0; /* 亮模式下折叠侧边栏时的 Ribbon 背景颜色 */
549
+ --scrollbar-bg: #f0f0f0; /* 亮模式下滚动条背景颜色 */
550
+ --scrollbar-thumb-bg: #cccccc; /* 亮模式下滚动条滑块背景颜色 */
551
+ --scrollbar-active-thumb-bg: #999999; /* 亮模式下活动状态下滚动条滑块背景颜色 */
552
+ --status-bar-background: #f0f0f0; /* 亮模式下状态栏背景颜色 */
553
+ --status-bar-border-color: #cccccc; /* 亮模式下状态栏边框颜色 */
554
+ --status-bar-text-color: #000000; /* 亮模式下状态栏文字颜色 */
555
+ --titlebar-background: #f0f0f0; /* 亮模式下的标题栏背景颜色 */
556
+ --titlebar-background-focused: #e0e0e0; /* 亮模式下聚焦窗口时的标题栏背景颜色 */
557
+ --titlebar-border-color: #cccccc; /* 亮模式下的标题栏边框颜色 */
558
+ --titlebar-text-color: #000000; /* 亮模式下的标题栏文字颜色 */
559
+ --titlebar-text-color-focused: #333333; /* 亮模式下聚焦窗口时的标题栏文字颜色 */
560
+ --workspace-background-translucent: rgba(240, 240, 240, 0.8); /* 半透明窗口背景颜色 */
561
+
562
+ --bold-color: #000000; /* 亮模式下加粗文字颜色 */
563
+ --italic-color: #000000;
564
+
565
+ }
566
+
567
+
568
+
569
+
570
+
571
+
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+ .theme-dark {
580
+ --background-primary: black;
581
+ --background-secondary: #1a1a1a; /* 深灰色 */
582
+ --text-primary: white;
583
+ --text-secondary: #cccccc; /* 浅灰色 */
584
+
585
+ --interactive-normal: #333333; /* 深灰色 */
586
+ --interactive-hover: #4d4d4d; /* 略浅的灰色 */
587
+ --interactive-accent: #666666; /* 灰色 */
588
+ --interactive-accent-hsl: hsl(0, 0%, 40%); /* 灰色的HSL表示 */
589
+ --interactive-accent-hover: #808080; /* 更浅的灰色 */
590
+ --checkbox-marker-color: black; /* 复选框标记的颜色 */
591
+ --checkbox-color: #333333; /* 复选框的背景颜色 */
592
+ --checkbox-color-hover: #4d4d4d; /* 复选框的背景颜色 (hover) */
593
+ --checkbox-border-color: #666666; /* 未选中的边框颜色 */
594
+ --checkbox-border-color-hover: #999999; /* 未选中的边框颜色 (hover) */
595
+ --checklist-done-decoration: line-through; /* 已完成项的文本装饰 */
596
+ --checklist-done-color: #666666; /* 已完成项的文本颜色 */
597
+ --swatch-radius: 4px; /* 色样的圆角半径 */
598
+ --swatch-height: 20px; /* 色样的高度 */
599
+ --swatch-width: 20px; /* 色样的宽度 */
600
+ --swatch-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); /* 色样的阴影 */
601
+ --icon-color: #ffffff; /* 图标颜色 */
602
+ --icon-color-hover: #bbbbbb; /* 悬停时的图标颜色 */
603
+ --icon-color-active: #999999; /* 激活时的图标颜色 */
604
+ --icon-color-focused: #dddddd; /* 聚焦时的图标颜色 */
605
+ --icon-opacity: 1; /* 图标透明度 */
606
+ --icon-opacity-hover: 0.8; /* 悬停时的图标透明度 */
607
+ --icon-opacity-active: 0.6; /* 激活时的图标透明度 */
608
+ --drag-ghost-background: rgba(0, 0, 0, 0.8); /* 拖动虚影背景颜色 */
609
+ --drag-ghost-text-color: #ffffff; /* 拖动虚影文本颜色 */
610
+ --indentation-guide-color: #444444; /* 暗模式下缩进引导线颜色 */
611
+ --indentation-guide-color-active: #ffcc00; /* 暗模式下活动状态缩进引导线颜色 */
612
+ --modal-background: #333333; /* 暗模式模态背景颜色 */
613
+ --modal-border-color: #444444; /* 暗模式模态边框颜色 */
614
+ --pill-color: #ffffff;
615
+ --pill-color-hover: #cccccc;
616
+ --pill-color-remove: #FF4444;
617
+ --pill-color-remove-hover: #CC4444;
618
+ --pill-decoration: none;
619
+ --pill-decoration-hover: underline;
620
+ --pill-background: #444444;
621
+ --pill-background-hover: #555555;
622
+ --pill-border-color: #666666;
623
+ --pill-border-color-hover: #888888;
624
+ --pill-border-width: 1px;
625
+ --pill-padding-x: 8px;
626
+ --pill-padding-y: 4px;
627
+ --pill-radius: 12px;
628
+ --pill-weight: bold;
629
+ --nav-item-color: #ffffff;
630
+ --nav-item-color-hover: #cccccc;
631
+ --nav-item-color-active: #00ffff;
632
+ --nav-item-color-selected: #ff00ff;
633
+ --nav-item-color-highlighted: #00ff00;
634
+ --nav-item-background-hover: #444444;
635
+ --nav-item-background-active: #666666;
636
+ --nav-item-background-selected: #555555;
637
+ --nav-indentation-guide-color: #666666;
638
+ --nav-collapse-icon-color: #ffffff;
639
+ --nav-collapse-icon-color-collapsed: #aaaaaa;
640
+
641
+ --nav-heading-color: #ffffff;
642
+ --nav-heading-color-hover: #cccccc;
643
+ --nav-heading-color-collapsed: #999999;
644
+ --nav-heading-color-collapsed-hover: #bbbbbb;
645
+
646
+ --vault-name-color: #ffffff;
647
+ --prompt-border-color: #444444; /* 暗模式下提示框边框颜色 */
648
+ --slider-thumb-border-color: #444444; /* 暗模式下滑块拇指边框颜色 */
649
+ --slider-track-background: #666666; /* 暗模式下滑轨背景颜色 */
650
+ --tab-background-active: #1a1a1a;
651
+ --tab-text-color: #ffffff;
652
+ --tab-text-color-active: #bbbbbb;
653
+ --tab-text-color-focused: #ffffff;
654
+ --tab-text-color-focused-active: #ffcc00;
655
+ --tab-text-color-focused-highlighted: #00ccff;
656
+ --tab-text-color-focused-active-current: #7c7cff;
657
+ --tab-container-background: #000000;
658
+ --tab-divider-color: #666666;
659
+ --tab-outline-color: #cccccc;
660
+ --blockquote-background-color: #1a1a1a; /* 暗模式下引用块背景颜色 */
661
+ --blockquote-border-color: #444444; /* 暗模式下引用块左侧边框颜色 */
662
+ --blockquote-color: #dddddd; /* 暗模式下引用块文字颜色 */
663
+ --callout-title-color: #ffffff; /* 暗模式下 Callout 标题文字颜色 */
664
+ --code-background: #2d2d2d; /* 暗模式下代码背景颜色 */
665
+ --code-normal: #ffffff; /* 暗模式下非高亮语法颜色 */
666
+ --code-comment: #999988; /* 暗模式下注释颜色 */
667
+ --code-function: #a6e22e; /* 暗模式下函数颜色 */
668
+ --code-important: #f92672; /* 暗模式下重要内容, 正则表达式颜色 */
669
+ --code-keyword: #f92672; /* 暗模式下关键词颜色 */
670
+ --code-operator: #f92672; /* 暗模式下操作符颜色 */
671
+ --code-property: #66d9ef; /* 暗模式下属性颜色 */
672
+ --code-punctuation: #ffffff; /* 暗模式下标点颜色 */
673
+ --code-string: #e6db74; /* 暗模式下字符串颜色 */
674
+ --code-tag: #a6e22e; /* 暗模式下标签, 符号, 常量颜色 */
675
+ --code-value: #ae81ff; /* 暗模式下值颜色 */
676
+ --embed-background: #333333; /* 暗模式下嵌入文件的背景颜色 */
677
+ --embed-border-color: #444444; /* 暗模式下嵌入文件的边框颜色 */
678
+ --file-header-border-color: #444444; /* 暗模式下文件头部的边框颜色 */
679
+ --file-header-color: #ffffff; /* 暗模式下文件头部的文本颜色 */
680
+ --h1-color: #cccccc; /* 暗模式 H1 文字颜色 */
681
+ --h2-color: #bbbbbb; /* 暗模式 H2 文字颜色 */
682
+ --h3-color: #aaaaaa; /* 暗模式 H3 文字颜色 */
683
+ --h4-color: #999999; /* 暗模式 H4 文字颜色 */
684
+ --h5-color: #888888; /* 暗模式 H5 文字颜色 */
685
+ --h6-color: #777777; /* 暗模式 H6 文字颜色 */
686
+ --link-color: #87cefa;
687
+ --link-color-hover: #4682b4;
688
+ --link-decoration: underline;
689
+ --link-decoration-hover: underline;
690
+ --link-decoration-thickness: 1px;
691
+ --link-weight: normal;
692
+
693
+ --link-unresolved-color: #ff6347;
694
+ --link-unresolved-opacity: 0.7;
695
+ --link-unresolved-filter: brightness(0.8);
696
+ --link-unresolved-decoration-style: dashed;
697
+ --link-unresolved-decoration-color: #ff6347;
698
+
699
+ --link-external-color: #98fb98;
700
+ --link-external-color-hover: #32cd32;
701
+ --link-external-decoration: underline;
702
+ --link-external-decoration-hover: underline;
703
+ --list-marker-color: #ffffff; /* 暗模式下标记颜色 */
704
+ --list-marker-color-hover: #bbbbbb; /* 暗模式下悬停时标记颜色 */
705
+ --list-marker-color-collapsed: #777777; /* 暗模式下折叠项目的标记颜色 */
706
+ --list-bullet-border: 2px solid #ffffff; /* 暗模式下项目符号边框 */
707
+ --hr-color: #ffffff; /* 暗模式下水平规则边框颜色 */
708
+ --hr-thickness: 2px; /* 暗模式下水平规则边框厚度 */
709
+ --inline-title-color: #ffffff; /* 暗模式下行内标题文字颜色 */
710
+ --metadata-background: #333333;
711
+ --metadata-border-color: #555555;
712
+ --metadata-divider-color: #444444;
713
+ --metadata-divider-color-hover: #666666;
714
+ --metadata-divider-color-focus: #888888;
715
+ --metadata-property-background: #444444;
716
+ --metadata-property-background-hover: #555555;
717
+ --metadata-property-background-active: #666666;
718
+ --metadata-label-text-color: #cccccc;
719
+ --metadata-label-text-color-hover: #ffffff;
720
+ --metadata-input-text-color: #ffffff;
721
+ --metadata-input-background: #555555;
722
+ --metadata-input-background-hover: #666666;
723
+ --metadata-input-background-active: #777777;
724
+ --tag-color: #ffffff;
725
+ --tag-color-hover: #cccccc;
726
+ --tag-background: #444444;
727
+ --tag-background-hover: #555555;
728
+ --tag-border-color: #666666;
729
+ --tag-border-color-hover: #888888;
730
+ --divider-color: #555555; /* 暗模式下分隔线边框颜色 */
731
+ --divider-color-hover: #888888; /* 暗模式下分隔线悬停时边框颜色 */
732
+ --ribbon-background: #333333; /* 暗模式下的 Ribbon 背景颜色 */
733
+ --ribbon-background-collapsed: #444444; /* 暗模式下折叠侧边栏时的 Ribbon 背景颜色 */
734
+ --scrollbar-bg: #333333; /* 暗模式下滚动条背景颜色 */
735
+ --scrollbar-thumb-bg: #555555; /* 暗模式下滚动条滑块背景颜色 */
736
+ --scrollbar-active-thumb-bg: #888888; /* 暗模式下活动状态下滚动条滑块背景颜色 */
737
+ --status-bar-background: #333333; /* 暗模式下状态栏背景颜色 */
738
+ --status-bar-border-color: #555555; /* 暗模式下状态栏边框颜色 */
739
+ --status-bar-text-color: #ffffff; /* 暗模式下状态栏文字颜色 */
740
+ --titlebar-background: #333333; /* 暗模式下的标题栏背景颜色 */
741
+ --titlebar-background-focused: #444444; /* 暗模式下聚焦窗口时的标题栏背景颜色 */
742
+ --titlebar-border-color: #555555; /* 暗模式下的标题栏边框颜色 */
743
+ --titlebar-text-color: #ffffff; /* 暗模式下的标题栏文字颜色 */
744
+ --titlebar-text-color-focused: #dddddd; /* 暗模式下聚焦窗口时的标题栏文字颜色 */
745
+ --workspace-background-translucent: rgba(51, 51, 51, 0.8); /* 暗模式下半透明窗口背景颜色 */
746
+ --text-selection:#333333;
747
+
748
+ --bold-color:#cccccc;
749
+ --italic-color:#cccccc;
750
+ }
751
+
752
+ /* ------------------- */
753
+ /* Checkbox styling & icons. Credit Minimal theme: https://minimal.guide/Block+types/Checklists#Checkbox+styling */
754
+ /* Support @kepano - https://www.buymeacoffee.com/kepano */
755
+ /* Style of Open PR Merged PR Draft PR. credits to Things theme: https://github.com/colineckert/obsidian-things*/
756
+ /* ------------------- */
757
+
758
+ body.enable-alternative-checkboxes input[data-task='!']:checked,
759
+ body.enable-alternative-checkboxes input[data-task='*']:checked,
760
+ body.enable-alternative-checkboxes input[data-task='-']:checked,
761
+ body.enable-alternative-checkboxes input[data-task='<']:checked,
762
+ body.enable-alternative-checkboxes input[data-task='>']:checked,
763
+ body.enable-alternative-checkboxes input[data-task='I']:checked,
764
+ body.enable-alternative-checkboxes input[data-task='b']:checked,
765
+ body.enable-alternative-checkboxes input[data-task='c']:checked,
766
+ body.enable-alternative-checkboxes input[data-task='d']:checked,
767
+ body.enable-alternative-checkboxes input[data-task='f']:checked,
768
+ body.enable-alternative-checkboxes input[data-task='k']:checked,
769
+ body.enable-alternative-checkboxes input[data-task='l']:checked,
770
+ body.enable-alternative-checkboxes input[data-task='p']:checked,
771
+ body.enable-alternative-checkboxes input[data-task='u']:checked,
772
+ body.enable-alternative-checkboxes input[data-task='w']:checked,
773
+ body.enable-alternative-checkboxes input[data-task='P']:checked, /* Open PR */
774
+ body.enable-alternative-checkboxes input[data-task='M']:checked, /* Merged PR */
775
+ body.enable-alternative-checkboxes input[data-task='D']:checked, /* Draft PR */
776
+ body.enable-alternative-checkboxes li[data-task='!'] > input:checked,
777
+ body.enable-alternative-checkboxes li[data-task='!'] > p > input:checked,
778
+ body.enable-alternative-checkboxes li[data-task='*'] > input:checked,
779
+ body.enable-alternative-checkboxes li[data-task='*'] > p > input:checked,
780
+ body.enable-alternative-checkboxes li[data-task='-'] > input:checked,
781
+ body.enable-alternative-checkboxes li[data-task='-'] > p > input:checked,
782
+ body.enable-alternative-checkboxes li[data-task='<'] > input:checked,
783
+ body.enable-alternative-checkboxes li[data-task='<'] > p > input:checked,
784
+ body.enable-alternative-checkboxes li[data-task='>'] > input:checked,
785
+ body.enable-alternative-checkboxes li[data-task='>'] > p > input:checked,
786
+ body.enable-alternative-checkboxes li[data-task='I'] > input:checked,
787
+ body.enable-alternative-checkboxes li[data-task='I'] > p > input:checked,
788
+ body.enable-alternative-checkboxes li[data-task='b'] > input:checked,
789
+ body.enable-alternative-checkboxes li[data-task='b'] > p > input:checked,
790
+ body.enable-alternative-checkboxes li[data-task='c'] > input:checked,
791
+ body.enable-alternative-checkboxes li[data-task='c'] > p > input:checked,
792
+ body.enable-alternative-checkboxes li[data-task='d'] > input:checked,
793
+ body.enable-alternative-checkboxes li[data-task='d'] > p > input:checked,
794
+ body.enable-alternative-checkboxes li[data-task='f'] > input:checked,
795
+ body.enable-alternative-checkboxes li[data-task='f'] > p > input:checked,
796
+ body.enable-alternative-checkboxes li[data-task='k'] > input:checked,
797
+ body.enable-alternative-checkboxes li[data-task='k'] > p > input:checked,
798
+ body.enable-alternative-checkboxes li[data-task='l'] > input:checked,
799
+ body.enable-alternative-checkboxes li[data-task='l'] > p > input:checked,
800
+ body.enable-alternative-checkboxes li[data-task='p'] > input:checked,
801
+ body.enable-alternative-checkboxes li[data-task='p'] > p > input:checked,
802
+ body.enable-alternative-checkboxes li[data-task='u'] > input:checked,
803
+ body.enable-alternative-checkboxes li[data-task='u'] > p > input:checked,
804
+ body.enable-alternative-checkboxes li[data-task='w'] > input:checked,
805
+ body.enable-alternative-checkboxes li[data-task='w'] > p > input:checked,
806
+ body.enable-alternative-checkboxes li[data-task='P'] > input:checked,
807
+ body.enable-alternative-checkboxes li[data-task='P'] > p > input:checked,
808
+ body.enable-alternative-checkboxes li[data-task='M'] > input:checked,
809
+ body.enable-alternative-checkboxes li[data-task='M'] > p > input:checked,
810
+ body.enable-alternative-checkboxes li[data-task='D'] > input:checked,
811
+ body.enable-alternative-checkboxes li[data-task='D'] > p > input:checked {
812
+ --checkbox-marker-color: transparent;
813
+ border: none;
814
+ border-radius: 0;
815
+ background-image: none;
816
+ background-color: currentColor;
817
+ -webkit-mask-size: var(--checkbox-icon);
818
+ -webkit-mask-position: 50% 50%;
819
+ }
820
+ body.enable-alternative-checkboxes input[data-task='>']:checked,
821
+ body.enable-alternative-checkboxes li[data-task='>'] > input:checked,
822
+ body.enable-alternative-checkboxes li[data-task='>'] > p > input:checked {
823
+ color: var(--text-faint);
824
+ transform: rotate(90deg);
825
+ -webkit-mask-position: 50% 100%;
826
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M10.894 2.553a1 1 0 00-1.788 0l-7 14a1 1 0 001.169 1.409l5-1.429A1 1 0 009 15.571V11a1 1 0 112 0v4.571a1 1 0 00.725.962l5 1.428a1 1 0 001.17-1.408l-7-14z' /%3E%3C/svg%3E");
827
+ }
828
+ body.enable-alternative-checkboxes input[data-task='<']:checked,
829
+ body.enable-alternative-checkboxes li[data-task='<'] > input:checked,
830
+ body.enable-alternative-checkboxes li[data-task='<'] > p > input:checked {
831
+ color: var(--text-faint);
832
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z' clip-rule='evenodd' /%3E%3C/svg%3E");
833
+ }
834
+ body.enable-alternative-checkboxes input[data-task='?']:checked,
835
+ body.enable-alternative-checkboxes li[data-task='?'] > input:checked,
836
+ body.enable-alternative-checkboxes li[data-task='?'] > p > input:checked {
837
+ --checkbox-marker-color: transparent;
838
+ background-color: var(--color-yellow);
839
+ border-color: var(--color-yellow);
840
+ background-position: 50% 50%;
841
+ background-size: 200% 90%;
842
+ background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"%3E%3Cpath fill="white" fill-rule="evenodd" d="M4.475 5.458c-.284 0-.514-.237-.47-.517C4.28 3.24 5.576 2 7.825 2c2.25 0 3.767 1.36 3.767 3.215c0 1.344-.665 2.288-1.79 2.973c-1.1.659-1.414 1.118-1.414 2.01v.03a.5.5 0 0 1-.5.5h-.77a.5.5 0 0 1-.5-.495l-.003-.2c-.043-1.221.477-2.001 1.645-2.712c1.03-.632 1.397-1.135 1.397-2.028c0-.979-.758-1.698-1.926-1.698c-1.009 0-1.71.529-1.938 1.402c-.066.254-.278.461-.54.461h-.777ZM7.496 14c.622 0 1.095-.474 1.095-1.09c0-.618-.473-1.092-1.095-1.092c-.606 0-1.087.474-1.087 1.091S6.89 14 7.496 14Z"%2F%3E%3C%2Fsvg%3E');
843
+ }
844
+ body.enable-alternative-checkboxes.theme-dark input[data-task='?']:checked,
845
+ body.enable-alternative-checkboxes.theme-dark li[data-task='?'] > input:checked,
846
+ body.enable-alternative-checkboxes.theme-dark li[data-task='?'] > p > input:checked {
847
+ background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"%3E%3Cpath fill="black" fill-opacity="0.8" fill-rule="evenodd" d="M4.475 5.458c-.284 0-.514-.237-.47-.517C4.28 3.24 5.576 2 7.825 2c2.25 0 3.767 1.36 3.767 3.215c0 1.344-.665 2.288-1.79 2.973c-1.1.659-1.414 1.118-1.414 2.01v.03a.5.5 0 0 1-.5.5h-.77a.5.5 0 0 1-.5-.495l-.003-.2c-.043-1.221.477-2.001 1.645-2.712c1.03-.632 1.397-1.135 1.397-2.028c0-.979-.758-1.698-1.926-1.698c-1.009 0-1.71.529-1.938 1.402c-.066.254-.278.461-.54.461h-.777ZM7.496 14c.622 0 1.095-.474 1.095-1.09c0-.618-.473-1.092-1.095-1.092c-.606 0-1.087.474-1.087 1.091S6.89 14 7.496 14Z"%2F%3E%3C%2Fsvg%3E');
848
+ }
849
+ body.enable-alternative-checkboxes input[data-task='/']:checked,
850
+ body.enable-alternative-checkboxes li[data-task='/'] > input:checked,
851
+ body.enable-alternative-checkboxes li[data-task='/'] > p > input:checked {
852
+ background-image: none;
853
+ background-color: transparent;
854
+ position: relative;
855
+ overflow: hidden;
856
+ }
857
+ body.enable-alternative-checkboxes input[data-task='/']:checked:after,
858
+ body.enable-alternative-checkboxes li[data-task='/'] > input:checked:after,
859
+ body.enable-alternative-checkboxes li[data-task='/'] > p > input:checked:after {
860
+ top: 0;
861
+ left: 0;
862
+ content: ' ';
863
+ display: block;
864
+ position: absolute;
865
+ background-color: var(--color-accent);
866
+ width: calc(50% - 0.5px);
867
+ height: 100%;
868
+ -webkit-mask-image: none;
869
+ }
870
+ body.enable-alternative-checkboxes input[data-task='!']:checked,
871
+ body.enable-alternative-checkboxes li[data-task='!'] > input:checked,
872
+ body.enable-alternative-checkboxes li[data-task='!'] > p > input:checked {
873
+ color: var(--color-orange);
874
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z' clip-rule='evenodd' /%3E%3C/svg%3E");
875
+ }
876
+ body.enable-alternative-checkboxes input[data-task='"']:checked,
877
+ body.enable-alternative-checkboxes input[data-task='“']:checked,
878
+ body.enable-alternative-checkboxes li[data-task='"'] > input:checked,
879
+ body.enable-alternative-checkboxes li[data-task='"'] > p > input:checked,
880
+ body.enable-alternative-checkboxes li[data-task='“'] > input:checked,
881
+ body.enable-alternative-checkboxes li[data-task='“'] > p > input:checked {
882
+ --checkbox-marker-color: transparent;
883
+ background-position: 50% 50%;
884
+ background-color: var(--color-cyan);
885
+ border-color: var(--color-cyan);
886
+ background-size: 75%;
887
+ background-repeat: no-repeat;
888
+ background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="white" d="M6.5 10c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.317.143-.686.238-1.028.467c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.944c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 6.5 10zm11 0c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.318.142-.686.238-1.028.466c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.945c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 17.5 10z"%2F%3E%3C%2Fsvg%3E');
889
+ }
890
+ body.enable-alternative-checkboxes.theme-dark input[data-task='"']:checked,
891
+ body.enable-alternative-checkboxes.theme-dark input[data-task='“']:checked,
892
+ body.enable-alternative-checkboxes.theme-dark li[data-task='"'] > input:checked,
893
+ body.enable-alternative-checkboxes.theme-dark li[data-task='"'] > p > input:checked,
894
+ body.enable-alternative-checkboxes.theme-dark li[data-task='“'] > input:checked,
895
+ body.enable-alternative-checkboxes.theme-dark li[data-task='“'] > p > input:checked {
896
+ background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="black" fill-opacity="0.7" d="M6.5 10c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.317.143-.686.238-1.028.467c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.944c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 6.5 10zm11 0c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.317.143-.686.238-1.028.467c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.944c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 17.5 10z"%2F%3E%3C/svg%3E');
897
+ }
898
+ body.enable-alternative-checkboxes input[data-task='-']:checked,
899
+ body.enable-alternative-checkboxes li[data-task='-'] > input:checked,
900
+ body.enable-alternative-checkboxes li[data-task='-'] > p > input:checked {
901
+ color: var(--text-faint);
902
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z' clip-rule='evenodd' /%3E%3C/svg%3E");
903
+ }
904
+ body.enable-alternative-checkboxes:not(.tasks) .markdown-preview-view ul li[data-task='-'].task-list-item.is-checked,
905
+ body.enable-alternative-checkboxes:not(.tasks) .markdown-source-view.mod-cm6 .HyperMD-task-line[data-task]:is([data-task='-']),
906
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='-'].task-list-item.is-checked {
907
+ color: var(--text-faint);
908
+ text-decoration: line-through solid var(--text-faint) 1px;
909
+ }
910
+ body.enable-alternative-checkboxes input[data-task='*']:checked,
911
+ body.enable-alternative-checkboxes li[data-task='*'] > input:checked,
912
+ body.enable-alternative-checkboxes li[data-task='*'] > p > input:checked {
913
+ color: var(--color-yellow);
914
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z' /%3E%3C/svg%3E");
915
+ }
916
+ body.enable-alternative-checkboxes input[data-task='l']:checked,
917
+ body.enable-alternative-checkboxes li[data-task='l'] > input:checked,
918
+ body.enable-alternative-checkboxes li[data-task='l'] > p > input:checked {
919
+ color: var(--color-red);
920
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M5.05 4.05a7 7 0 119.9 9.9L10 18.9l-4.95-4.95a7 7 0 010-9.9zM10 11a2 2 0 100-4 2 2 0 000 4z' clip-rule='evenodd' /%3E%3C/svg%3E");
921
+ }
922
+ body.enable-alternative-checkboxes input[data-task='i']:checked,
923
+ body.enable-alternative-checkboxes li[data-task='i'] > input:checked,
924
+ body.enable-alternative-checkboxes li[data-task='i'] > p > input:checked {
925
+ --checkbox-marker-color: transparent;
926
+ background-color: var(--color-blue);
927
+ border-color: var(--color-blue);
928
+ background-position: 50%;
929
+ background-size: 100%;
930
+ background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512"%3E%3Cpath fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="40" d="M196 220h64v172"%2F%3E%3Cpath fill="none" stroke="white" stroke-linecap="round" stroke-miterlimit="10" stroke-width="40" d="M187 396h138"%2F%3E%3Cpath fill="white" d="M256 160a32 32 0 1 1 32-32a32 32 0 0 1-32 32Z"%2F%3E%3C%2Fsvg%3E');
931
+ }
932
+ body.enable-alternative-checkboxes.theme-dark input[data-task='i']:checked,
933
+ body.enable-alternative-checkboxes.theme-dark li[data-task='i'] > input:checked,
934
+ body.enable-alternative-checkboxes.theme-dark li[data-task='i'] > p > input:checked {
935
+ background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512"%3E%3Cpath fill="none" stroke="black" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round" stroke-width="40" d="M196 220h64v172"%2F%3E%3Cpath fill="none" stroke="black" stroke-opacity="0.8" stroke-linecap="round" stroke-miterlimit="10" stroke-width="40" d="M187 396h138"%2F%3E%3Cpath fill="black" fill-opacity="0.8" d="M256 160a32 32 0 1 1 32-32a32 32 0 0 1-32 32Z"%2F%3E%3C%2Fsvg%3E');
936
+ }
937
+ body.enable-alternative-checkboxes input[data-task='S']:checked,
938
+ body.enable-alternative-checkboxes li[data-task='S'] > input:checked,
939
+ body.enable-alternative-checkboxes li[data-task='S'] > p > input:checked {
940
+ --checkbox-marker-color: transparent;
941
+ border-color: var(--color-green);
942
+ background-color: var(--color-green);
943
+ background-size: 100%;
944
+ background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"%3E%3Cpath fill="white" fill-rule="evenodd" d="M26 8a2 2 0 1 0-4 0v2a8 8 0 1 0 0 16v8a4.002 4.002 0 0 1-3.773-2.666a2 2 0 0 0-3.771 1.332A8.003 8.003 0 0 0 22 38v2a2 2 0 1 0 4 0v-2a8 8 0 1 0 0-16v-8a4.002 4.002 0 0 1 3.773 2.666a2 2 0 0 0 3.771-1.332A8.003 8.003 0 0 0 26 10V8Zm-4 6a4 4 0 0 0 0 8v-8Zm4 12v8a4 4 0 0 0 0-8Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E');
945
+ }
946
+ body.enable-alternative-checkboxes.theme-dark input[data-task='S']:checked,
947
+ body.enable-alternative-checkboxes.theme-dark li[data-task='S'] > input:checked,
948
+ body.enable-alternative-checkboxes.theme-dark li[data-task='S'] > p > input:checked {
949
+ background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"%3E%3Cpath fill-opacity="0.8" fill="black" fill-rule="evenodd" d="M26 8a2 2 0 1 0-4 0v2a8 8 0 1 0 0 16v8a4.002 4.002 0 0 1-3.773-2.666a2 2 0 0 0-3.771 1.332A8.003 8.003 0 0 0 22 38v2a2 2 0 1 0 4 0v-2a8 8 0 1 0 0-16v-8a4.002 4.002 0 0 1 3.773 2.666a2 2 0 0 0 3.771-1.332A8.003 8.003 0 0 0 26 10V8Zm-4 6a4 4 0 0 0 0 8v-8Zm4 12v8a4 4 0 0 0 0-8Z" clip-rule="evenodd"%3E%3C/path%3E%3C/svg%3E');
950
+ }
951
+ body.enable-alternative-checkboxes input[data-task='I']:checked,
952
+ body.enable-alternative-checkboxes li[data-task='I'] > input:checked,
953
+ body.enable-alternative-checkboxes li[data-task='I'] > p > input:checked {
954
+ color: var(--color-yellow);
955
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M11 3a1 1 0 10-2 0v1a1 1 0 102 0V3zM15.657 5.757a1 1 0 00-1.414-1.414l-.707.707a1 1 0 001.414 1.414l.707-.707zM18 10a1 1 0 01-1 1h-1a1 1 0 110-2h1a1 1 0 011 1zM5.05 6.464A1 1 0 106.464 5.05l-.707-.707a1 1 0 00-1.414 1.414l.707.707zM5 10a1 1 0 01-1 1H3a1 1 0 110-2h1a1 1 0 011 1zM8 16v-1h4v1a2 2 0 11-4 0zM12 14c.015-.34.208-.646.477-.859a4 4 0 10-4.954 0c.27.213.462.519.476.859h4.002z' /%3E%3C/svg%3E");
956
+ }
957
+ body.enable-alternative-checkboxes input[data-task='f']:checked,
958
+ body.enable-alternative-checkboxes li[data-task='f'] > input:checked,
959
+ body.enable-alternative-checkboxes li[data-task='f'] > p > input:checked {
960
+ color: var(--color-red);
961
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z' clip-rule='evenodd' /%3E%3C/svg%3E");
962
+ }
963
+ body.enable-alternative-checkboxes input[data-task='k']:checked,
964
+ body.enable-alternative-checkboxes li[data-task='k'] > input:checked,
965
+ body.enable-alternative-checkboxes li[data-task='k'] > p > input:checked {
966
+ color: var(--color-yellow);
967
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 8a6 6 0 01-7.743 5.743L10 14l-1 1-1 1H6v2H2v-4l4.257-4.257A6 6 0 1118 8zm-6-4a1 1 0 100 2 2 2 0 012 2 1 1 0 102 0 4 4 0 00-4-4z' clip-rule='evenodd' /%3E%3C/svg%3E");
968
+ }
969
+ body.enable-alternative-checkboxes input[data-task='u']:checked,
970
+ body.enable-alternative-checkboxes li[data-task='u'] > input:checked,
971
+ body.enable-alternative-checkboxes li[data-task='u'] > p > input:checked {
972
+ color: var(--color-green);
973
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 7a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0V8.414l-4.293 4.293a1 1 0 01-1.414 0L8 10.414l-4.293 4.293a1 1 0 01-1.414-1.414l5-5a1 1 0 011.414 0L11 10.586 14.586 7H12z' clip-rule='evenodd' /%3E%3C/svg%3E");
974
+ }
975
+ body.enable-alternative-checkboxes input[data-task='d']:checked,
976
+ body.enable-alternative-checkboxes li[data-task='d'] > input:checked,
977
+ body.enable-alternative-checkboxes li[data-task='d'] > p > input:checked {
978
+ color: var(--color-red);
979
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 13a1 1 0 100 2h5a1 1 0 001-1V9a1 1 0 10-2 0v2.586l-4.293-4.293a1 1 0 00-1.414 0L8 9.586 3.707 5.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0L11 9.414 14.586 13H12z' clip-rule='evenodd' /%3E%3C/svg%3E");
980
+ }
981
+ body.enable-alternative-checkboxes input[data-task='w']:checked,
982
+ body.enable-alternative-checkboxes li[data-task='w'] > input:checked,
983
+ body.enable-alternative-checkboxes li[data-task='w'] > p > input:checked {
984
+ color: var(--color-purple);
985
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M6 3a1 1 0 011-1h.01a1 1 0 010 2H7a1 1 0 01-1-1zm2 3a1 1 0 00-2 0v1a2 2 0 00-2 2v1a2 2 0 00-2 2v.683a3.7 3.7 0 011.055.485 1.704 1.704 0 001.89 0 3.704 3.704 0 014.11 0 1.704 1.704 0 001.89 0 3.704 3.704 0 014.11 0 1.704 1.704 0 001.89 0A3.7 3.7 0 0118 12.683V12a2 2 0 00-2-2V9a2 2 0 00-2-2V6a1 1 0 10-2 0v1h-1V6a1 1 0 10-2 0v1H8V6zm10 8.868a3.704 3.704 0 01-4.055-.036 1.704 1.704 0 00-1.89 0 3.704 3.704 0 01-4.11 0 1.704 1.704 0 00-1.89 0A3.704 3.704 0 012 14.868V17a1 1 0 001 1h14a1 1 0 001-1v-2.132zM9 3a1 1 0 011-1h.01a1 1 0 110 2H10a1 1 0 01-1-1zm3 0a1 1 0 011-1h.01a1 1 0 110 2H13a1 1 0 01-1-1z' clip-rule='evenodd' /%3E%3C/svg%3E");
986
+ }
987
+ body.enable-alternative-checkboxes input[data-task='p']:checked,
988
+ body.enable-alternative-checkboxes li[data-task='p'] > input:checked,
989
+ body.enable-alternative-checkboxes li[data-task='p'] > p > input:checked {
990
+ color: var(--color-green);
991
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M2 10.5a1.5 1.5 0 113 0v6a1.5 1.5 0 01-3 0v-6zM6 10.333v5.43a2 2 0 001.106 1.79l.05.025A4 4 0 008.943 18h5.416a2 2 0 001.962-1.608l1.2-6A2 2 0 0015.56 8H12V4a2 2 0 00-2-2 1 1 0 00-1 1v.667a4 4 0 01-.8 2.4L6.8 7.933a4 4 0 00-.8 2.4z' /%3E%3C/svg%3E");
992
+ }
993
+ body.enable-alternative-checkboxes input[data-task='c']:checked,
994
+ body.enable-alternative-checkboxes li[data-task='c'] > input:checked,
995
+ body.enable-alternative-checkboxes li[data-task='c'] > p > input:checked {
996
+ color: var(--color-orange);
997
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M18 9.5a1.5 1.5 0 11-3 0v-6a1.5 1.5 0 013 0v6zM14 9.667v-5.43a2 2 0 00-1.105-1.79l-.05-.025A4 4 0 0011.055 2H5.64a2 2 0 00-1.962 1.608l-1.2 6A2 2 0 004.44 12H8v4a2 2 0 002 2 1 1 0 001-1v-.667a4 4 0 01.8-2.4l1.4-1.866a4 4 0 00.8-2.4z' /%3E%3C/svg%3E");
998
+ }
999
+ body.enable-alternative-checkboxes input[data-task='b']:checked,
1000
+ body.enable-alternative-checkboxes li[data-task='b'] > input:checked,
1001
+ body.enable-alternative-checkboxes li[data-task='b'] > p > input:checked {
1002
+ color: var(--color-orange);
1003
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M5 4a2 2 0 012-2h6a2 2 0 012 2v14l-5-2.5L5 18V4z' /%3E%3C/svg%3E");
1004
+ }
1005
+ body.enable-alternative-checkboxes input[data-task='P']:checked,
1006
+ body.enable-alternative-checkboxes li[data-task='P'] > input:checked,
1007
+ body.enable-alternative-checkboxes li[data-task='P'] > p > input:checked {
1008
+ color: var(--color-green);
1009
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath d='M1.5 3.25a2.25 2.25 0 1 1 3 2.122v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.25 2.25 0 0 1 1.5 3.25Zm5.677-.177L9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354ZM3.75 2.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0 9.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm8.25.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z'%3E%3C/path%3E%3C/svg%3E");
1010
+ }
1011
+ body.enable-alternative-checkboxes input[data-task='M']:checked,
1012
+ body.enable-alternative-checkboxes li[data-task='M'] > input:checked,
1013
+ body.enable-alternative-checkboxes li[data-task='M'] > p > input:checked {
1014
+ color: var(--color-purple);
1015
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath d='M5.45 5.154A4.25 4.25 0 0 0 9.25 7.5h1.378a2.251 2.251 0 1 1 0 1.5H9.25A5.734 5.734 0 0 1 5 7.123v3.505a2.25 2.25 0 1 1-1.5 0V5.372a2.25 2.25 0 1 1 1.95-.218ZM4.25 13.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm8.5-4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM5 3.25a.75.75 0 1 0 0 .005V3.25Z'%3E%3C/path%3E%3C/svg%3E");
1016
+ }
1017
+ body.enable-alternative-checkboxes input[data-task='D']:checked,
1018
+ body.enable-alternative-checkboxes li[data-task='D'] > input:checked,
1019
+ body.enable-alternative-checkboxes li[data-task='D'] > p > input:checked {
1020
+ color: var(--color-base-50);
1021
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath d='M3.25 1A2.25 2.25 0 0 1 4 5.372v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.251 2.251 0 0 1 3.25 1Zm9.5 14a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5ZM2.5 3.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM3.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm9.5 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM14 7.5a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Zm0-4.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z'%3E%3C/path%3E%3C/svg%3E");
1022
+ }
1023
+
1024
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='>'].task-list-item.is-checked,
1025
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='<'].task-list-item.is-checked,
1026
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='b'].task-list-item.is-checked,
1027
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='i'].task-list-item.is-checked,
1028
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='*'].task-list-item.is-checked,
1029
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='!'].task-list-item.is-checked,
1030
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='S'].task-list-item.is-checked,
1031
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='?'].task-list-item.is-checked,
1032
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='/'].task-list-item.is-checked,
1033
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='"'].task-list-item.is-checked,
1034
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='l'].task-list-item.is-checked,
1035
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='I'].task-list-item.is-checked,
1036
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='p'].task-list-item.is-checked,
1037
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='c'].task-list-item.is-checked,
1038
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='f'].task-list-item.is-checked,
1039
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='k'].task-list-item.is-checked,
1040
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='w'].task-list-item.is-checked,
1041
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='u'].task-list-item.is-checked,
1042
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='d'].task-list-item.is-checked,
1043
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='P'].task-list-item.is-checked,
1044
+ body.enable-alternative-checkboxes:not(.tasks) li[data-task='D'].task-list-item.is-checked {
1045
+ color: var(--text-normal);
1046
+ }
1047
+
1048
+ /* ------------------- */
1049
+ /* Additional styles of tab. Credit anuppuccin theme: https://github.com/AnubisNekhet/AnuPpuccin */
1050
+ /* Support anubisnekhet - https://www.buymeacoffee.com/anubisnekhet */
1051
+ /* ------------------- */
1052
+
1053
+
1054
+ :root {
1055
+ /* Light Mode Colors */
1056
+ --oreo-background-secondary-alt-light: #f2f2f2;
1057
+ --oreo-background-primary-light: #ffffff;
1058
+ --oreo-background-primary-secondary-light: #e0e0e0;
1059
+ --oreo-text-faint-light: #707070;
1060
+ --oreo-text-muted-light: #333333;
1061
+ --oreo-text-accent-light: #ffcc00;
1062
+ --oreo-background-modifier-border-hover-light: #cccccc;
1063
+
1064
+ /* Dark Mode Colors */
1065
+ --oreo-background-secondary-alt-dark: #333333;
1066
+ --oreo-background-primary-dark: #1a1a1a;
1067
+ --oreo-background-primary-secondary-dark: #4d4d4d;
1068
+ --oreo-text-faint-dark: #cccccc;
1069
+ --oreo-text-muted-dark: #ffffff;
1070
+ --oreo-text-accent-dark: #ffcc00;
1071
+ --oreo-background-modifier-border-hover-dark: #666666;
1072
+
1073
+ /* Shared Variables */
1074
+ --oreo-tab-width: 200px;
1075
+ --oreo-tab-max-width: 320px;
1076
+ --oreo-tab-radius: 6px;
1077
+ --oreo-border-width: 1px;
1078
+ --oreo-tab-gap: 10px;
1079
+ --oreo-header-height: 40px;
1080
+ --oreo-tab-height: 28px;
1081
+ }
1082
+
1083
+ .theme-light .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root {
1084
+ --tab-background-inactive: #f2f2f2; /* --oreo-background-secondary-alt-light */
1085
+ --tab-background-active: #ffffff; /* --oreo-background-primary-light */
1086
+ --tab-background-inactive-hover: #e0e0e0; /* --oreo-background-primary-secondary-light */
1087
+ --tab-text-color: #707070; /* --oreo-text-faint-light */
1088
+ --tab-text-color-active: #333333; /* --oreo-text-muted-light */
1089
+ --tab-text-color-focused: #333333; /* --oreo-text-muted-light */
1090
+ --tab-text-color-focused-active: #333333; /* --oreo-text-muted-light */
1091
+ --tab-text-color-focused-highlighted: #ffcc00; /* --oreo-text-accent-light */
1092
+ --tab-text-color-focused-active-current: #ffcc00; /* --oreo-text-accent-light */
1093
+ --tab-divider-color: #cccccc; /* --oreo-background-modifier-border-hover-light */
1094
+ }
1095
+
1096
+ .theme-dark .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root {
1097
+ --tab-background-inactive: #333333; /* --oreo-background-secondary-alt-dark */
1098
+ --tab-background-active: #1a1a1a; /* --oreo-background-primary-dark */
1099
+ --tab-background-inactive-hover: #4d4d4d; /* --oreo-background-primary-secondary-dark */
1100
+ --tab-text-color: #cccccc; /* --oreo-text-faint-dark */
1101
+ --tab-text-color-active: #ffffff; /* --oreo-text-muted-dark */
1102
+ --tab-text-color-focused: #ffffff; /* --oreo-text-muted-dark */
1103
+ --tab-text-color-focused-active: #ffffff; /* --oreo-text-muted-dark */
1104
+ --tab-text-color-focused-highlighted: #ffcc00; /* --oreo-text-accent-dark */
1105
+ --tab-text-color-focused-active-current: #ffcc00; /* --oreo-text-accent-dark */
1106
+ --tab-divider-color: #666666; /* --oreo-background-modifier-border-hover-dark */
1107
+ }
1108
+
1109
+ .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner {
1110
+ margin: 5px 0 !important;
1111
+ gap: 10px;
1112
+ }
1113
+
1114
+ .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header {
1115
+ border-radius: 6px;
1116
+ border: 1px solid var(--tab-divider-color);
1117
+ background-color: var(--tab-background-inactive);
1118
+ color: var(--tab-text-color);
1119
+ max-width: 320px;
1120
+ }
1121
+
1122
+ .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header:not(.is-active) {
1123
+ --icon-color: var(--tab-text-color);
1124
+ --icon-color-hover: var(--tab-text-color-active);
1125
+ }
1126
+
1127
+ .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header .workspace-tab-header-inner .workspace-tab-header-inner-title {
1128
+ margin-top: 3px;
1129
+ }
1130
+
1131
+ .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header::before,
1132
+ .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header::after {
1133
+ display: none;
1134
+ }
1135
+
1136
+ .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header.is-active {
1137
+ background-color: var(--tab-background-active);
1138
+ max-width: 320px;
1139
+ box-shadow: none;
1140
+ }
1141
+
1142
+ .oreo-safari-tab-toggle .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header:not(.is-active):hover .workspace-tab-header-inner {
1143
+ background-color: var(--tab-background-inactive-hover);
1144
+ }
1145
+
1146
+ .oreo-safari-tab-toggle:not(.oreo-disable-newtab-align) .workspace-tab-header-container-inner {
1147
+ width: 100%;
1148
+ }
1149
+
1150
+ .oreo-safari-tab-toggle.oreo-safari-tab-animated .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header {
1151
+ transition: max-width 400ms ease-in-out, width 400ms ease-in-out, flex-grow 400ms ease, background-color 150ms;
1152
+ }
1153
+
1154
+ .oreo-safari-tab-toggle.oreo-safari-tab-animated .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header.is-active {
1155
+ flex-grow: 1.67;
1156
+ max-width: 320px;
1157
+ }
1158
+
1159
+ .oreo-alternate-tab-toggle, .oreo-default-tab, .oreo-safari-tab-toggle {
1160
+ --header-height: 40px;
1161
+ --tab-stacked-header-width: 40px;
1162
+ }
1163
+
1164
+ .oreo-alternate-tab-toggle .workspace-tabs:not(.mod-stacked),
1165
+ .oreo-safari-tab-toggle .workspace-tabs:not(.mod-stacked) {
1166
+ --tab-background: var(--tab-background-inactive);
1167
+ --tab-background-active: var(--tab-background-active);
1168
+ --tab-font-size: 12px;
1169
+ --tab-height: 28px;
1170
+ --tab-max-width: 200px;
1171
+ --tab-max-width-active: 300px;
1172
+ }
1173
+
1174
+ .oreo-alternate-tab-toggle .workspace-ribbon.mod-left {
1175
+ margin-top: 40px;
1176
+ }
1177
+
1178
+ .oreo-alternate-tab-toggle .workspace-ribbon.mod-left:before {
1179
+ padding-bottom: 0px;
1180
+ }
1181
+
1182
+ .oreo-alternate-tab-toggle .workspace-tabs:not(.mod-stacked) .workspace-tab-header::before,
1183
+ .oreo-alternate-tab-toggle .workspace-tabs:not(.mod-stacked) .workspace-tab-header::after,
1184
+ .oreo-alternate-tab-toggle .workspace .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner::after {
1185
+ display: none;
1186
+ }
1187
+
1188
+ .oreo-alternate-tab-toggle .mod-vertical:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header-container-inner,
1189
+ .oreo-alternate-tab-toggle .mod-horizontal:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header-container-inner {
1190
+ align-items: center;
1191
+ justify-content: center;
1192
+ margin: 0;
1193
+ width: 100%;
1194
+ gap: 10px;
1195
+ }
1196
+
1197
+ .oreo-disable-newtab-align.oreo-alternate-tab-toggle .mod-vertical:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header-container-inner,
1198
+ .oreo-disable-newtab-align.oreo-alternate-tab-toggle .mod-horizontal:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header-container-inner {
1199
+ width: unset;
1200
+ gap: 10px;
1201
+ }
1202
+
1203
+ .oreo-alternate-tab-toggle .mod-vertical:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header,
1204
+ .oreo-alternate-tab-toggle .mod-horizontal:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header {
1205
+ background: var(--tab-background);
1206
+ border-radius: 6px;
1207
+ box-shadow: none !important;
1208
+ height: 28px;
1209
+ padding: 0 !important;
1210
+ transition: 400ms, background-color 150ms ease-in-out;
1211
+ }
1212
+
1213
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header {
1214
+ max-width: 200px;
1215
+ border: 1px solid var(--tab-divider-color);
1216
+ }
1217
+
1218
+ .oreo-alternate-tab-toggle.oreo-alt-tab-anim-toggle .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header {
1219
+ transition: 400ms, background-color 150ms ease-in-out;
1220
+ }
1221
+
1222
+ .oreo-alternate-tab-toggle .workspace-tabs:not(.mod-stacked) .workspace-tab-header:first-child {
1223
+ margin-left: 0;
1224
+ }
1225
+
1226
+ .oreo-alternate-tab-toggle .mod-root:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner {
1227
+ padding: 7px 8px;
1228
+ }
1229
+
1230
+ .oreo-alternate-tab-toggle .mod-root:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner {
1231
+ padding: 0 4px 0 8px;
1232
+ transition: 400ms, background-color 150ms ease-in-out, max-width 400ms;
1233
+ }
1234
+ .oreo-alternate-tab-toggle .mod-root:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner,
1235
+ .oreo-alternate-tab-toggle .mod-root:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner-close-button,
1236
+ .oreo-alternate-tab-toggle .mod-root:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner-icon {
1237
+ color: var(--tab-text-color);
1238
+ }
1239
+
1240
+ .oreo-alternate-tab-toggle .workspace .mod-root .workspace-tab-header-inner::after {
1241
+ display: none;
1242
+ }
1243
+
1244
+ .oreo-alternate-tab-toggle .mod-root:not(.mod-left-split):not(.mod-right-split) .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active {
1245
+ flex-grow: 1.67;
1246
+ max-width: 300px;
1247
+ background-color: var(--tab-background-active);
1248
+ }
1249
+
1250
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active .workspace-tab-header-inner-title {
1251
+ color: var(--tab-text-color-focused-highlighted);
1252
+ }
1253
+
1254
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active .workspace-tab-header-inner,
1255
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active .workspace-tab-header-inner-title,
1256
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active .workspace-tab-header-inner-close-button,
1257
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active .workspace-tab-header-inner-icon {
1258
+ color: var(--tab-text-color-focused-active);
1259
+ }
1260
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active .workspace-tab-header-inner:hover {
1261
+ background-color: rgba(0, 0, 0, 0.4); /* Oreo surface1 color */
1262
+ }
1263
+
1264
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked).mod-active .workspace-tab-header.is-active .workspace-tab-header-inner,
1265
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked).mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-title,
1266
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked).mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-close-button,
1267
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked).mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-icon {
1268
+ color: var(--tab-text-color-focused-active-current) !important;
1269
+ }
1270
+
1271
+ .oreo-alternate-tab-toggle .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active:hover {
1272
+ background-color: var(--tab-background-active); /* Oreo border color */
1273
+ }
1274
+
1275
+ .oreo-alternate-tab-toggle .sidebar-toggle-button.mod-left,
1276
+ .oreo-alternate-tab-toggle .sidebar-toggle-button.mod-right {
1277
+ align-items: center;
1278
+ }
1279
+
1280
+ .oreo-alternate-tab-toggle .sidebar-toggle-button.mod-left .clickable-icon,
1281
+ .oreo-alternate-tab-toggle .sidebar-toggle-button.mod-right .clickable-icon {
1282
+ height: 28px;
1283
+ }
1284
+
1285
+ .is-focused:not(.oreo-mini-tab-toggle.oreo-colorful-frame) .mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-icon,
1286
+ .is-focused .mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-title {
1287
+ color: var(--tab-text-color-focused-highlighted);
1288
+ }
1289
+
1290
+ .oreo-mini-tab-toggle {
1291
+ --header-height: 40px;
1292
+ --tab-stacked-header-width: 40px;
1293
+ }
1294
+ .oreo-mini-tab-toggle .workspace-split:not(.mod-left-split):not(.mod-right-split) .workspace-tab-header-container-inner .workspace-tab-header {
1295
+ background-color: transparent;
1296
+ box-shadow: none;
1297
+ }
1298
+ .oreo-mini-tab-toggle .workspace-split:not(.mod-left-split):not(.mod-right-split) .workspace-tab-header-container-inner .workspace-tab-header::before,
1299
+ .oreo-mini-tab-toggle .workspace-split:not(.mod-left-split):not(.mod-right-split) .workspace-tab-header-container-inner .workspace-tab-header::after {
1300
+ display: none;
1301
+ }
1302
+ .oreo-mini-tab-toggle .workspace-split:not(.mod-left-split):not(.mod-right-split) .workspace-tab-header-container-inner .workspace-tab-header.is-active {
1303
+ border-bottom: 2px solid var(--tab-text-color-focused-highlighted);
1304
+ margin-bottom: 0px;
1305
+ padding-bottom: 0px;
1306
+ }
1307
+ .oreo-mini-tab-toggle .workspace-split:not(.mod-left-split):not(.mod-right-split) .workspace-tab-header-container-inner .workspace-tab-header.is-active .workspace-tab-header-inner {
1308
+ border-radius: 6px 6px 0 0; /* Oreo tab radius */
1309
+ margin-top: 0.5px;
1310
+ padding-bottom: 4px;
1311
+ }
1312
+ .oreo-mini-tab-toggle .workspace-split:not(.mod-left-split):not(.mod-right-split) .workspace-tab-header-container-inner .workspace-tab-header ::after {
1313
+ display: none;
1314
+ }
1315
+ .oreo-mini-tab-toggle .workspace-split:not(.mod-left-split):not(.mod-right-split) .workspace-tab-header-container-inner .workspace-tab-header:hover .workspace-tab-header-inner {
1316
+ background-color: var(--tab-background-active); /* Oreo hover background */
1317
+ }
1318
+
1319
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header {
1320
+ --tab-text-color-focused-active-current: #000000; /* Oreo depth tab text */
1321
+ --tab-text-color-focused: #000000; /* Oreo depth tab text */
1322
+ }
1323
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header:not(.is-active) {
1324
+ --tab-text-color: #000000; /* Oreo depth tab text */
1325
+ --icon-color: #000000; /* Oreo depth tab text */
1326
+ --icon-color-hover: #000000; /* Oreo depth tab text */
1327
+ background-color: rgba(255, 255, 255, 0.6); /* Oreo mantle color */
1328
+ }
1329
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header:not(.is-active)::before,
1330
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header:not(.is-active)::after {
1331
+ box-shadow: inset 0 0 0 1px transparent, 0 0 0 16px rgba(255, 255, 255, 0.6); /* Oreo shadow */
1332
+ }
1333
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header:not(.is-active)::after {
1334
+ clip-path: inset(50% 50% 0 0);
1335
+ }
1336
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header:not(.is-active)::before {
1337
+ clip-path: inset(50% 0 0 50%);
1338
+ }
1339
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header-inner::after {
1340
+ display: none;
1341
+ }
1342
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header-container-inner {
1343
+ gap: 10px;
1344
+ }
1345
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header:not(.is-active):hover .workspace-tab-header-inner {
1346
+ background-color: transparent;
1347
+ }
1348
+ .oreo-depth-tab-toggle .workspace .mod-root .workspace-tab-header-inner-close-button:hover {
1349
+ background-color: #E8E8E8; /* Oreo hover background */
1350
+ }
1351
+
1352
+ .oreo-depth-tab-toggle.oreo-depth-tab-text-invert {
1353
+ --oreo-depth-tab-text: #000000; /* Oreo crust color */
1354
+ }
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+
1374
+
1375
+ /* @settings
1376
+ name: Oreo Theme 🍪
1377
+ id: oreo-theme
1378
+ settings:
1379
+ -
1380
+ id: general-settings
1381
+ title: General Settings ⚙
1382
+ title.zh: 常规设置 ⚙
1383
+ type: heading
1384
+ level: 2
1385
+ collapsed: true
1386
+ -
1387
+ id: button-radius
1388
+ title: Button Radius
1389
+ title.zh: 按钮圆角半径
1390
+ type: variable-number
1391
+ default: 10
1392
+ format: px
1393
+ -
1394
+ id: checkbox-radius
1395
+ title: Checkbox Radius
1396
+ title.zh: 复选框圆角半径
1397
+ type: variable-number
1398
+ default: 50
1399
+ format: "%"
1400
+ -
1401
+ id: checkbox-size
1402
+ title: Checkbox Size
1403
+ title.zh: 复选框大小
1404
+ type: variable-number
1405
+ default: 16
1406
+ format: px
1407
+ -
1408
+ id: checkbox-margin-inline-start
1409
+ title: Checkbox Margin Inline Start
1410
+ title.zh: 复选框起始内边距
1411
+ type: variable-number
1412
+ default: 8
1413
+ format: px
1414
+ -
1415
+ id: popover-width
1416
+ title: Popover Width
1417
+ title.zh: 弹出框宽度
1418
+ type: variable-number
1419
+ default: 300
1420
+ format: px
1421
+ -
1422
+ id: popover-height
1423
+ title: Popover Height
1424
+ title.zh: 弹出框高度
1425
+ type: variable-text
1426
+ default: auto
1427
+ -
1428
+ id: popover-max-height
1429
+ title: Popover Max Height
1430
+ title.zh: 弹出框最大高度
1431
+ type: variable-number
1432
+ default: 400
1433
+ format: px
1434
+ -
1435
+ id: popover-font-size
1436
+ title: Popover Font Size
1437
+ title.zh: 弹出框字体大小
1438
+ type: variable-number
1439
+ default: 14
1440
+ format: px
1441
+ -
1442
+ id: popover-pdf-width
1443
+ title: Popover PDF Width
1444
+ title.zh: PDF 文件预览宽度
1445
+ type: variable-number
1446
+ default: 600
1447
+ format: px
1448
+ -
1449
+ id: popover-pdf-height
1450
+ title: Popover PDF Height
1451
+ title.zh: PDF 文件预览高度
1452
+ type: variable-number
1453
+ default: 800
1454
+ format: px
1455
+ -
1456
+ id: heading-spacing
1457
+ title: Heading Spacing
1458
+ title.zh: 头部间距
1459
+ type: variable-number
1460
+ default: 20
1461
+ format: px
1462
+ -
1463
+ id: heading-font-settings
1464
+ title: Heading Font Settings 🖋️
1465
+ title.zh: 标题字体设置 🖋️
1466
+ type: heading
1467
+ level: 2
1468
+ collapsed: true
1469
+ -
1470
+ id: h1-font
1471
+ title: H1 Font
1472
+ title.zh: H1 字体
1473
+ type: variable-text
1474
+ default: "Arial, sans-serif"
1475
+ -
1476
+ id: h2-font
1477
+ title: H2 Font
1478
+ title.zh: H2 字体
1479
+ type: variable-text
1480
+ default: "Arial, sans-serif"
1481
+ -
1482
+ id: h3-font
1483
+ title: H3 Font
1484
+ title.zh: H3 字体
1485
+ type: variable-text
1486
+ default: "Arial, sans-serif"
1487
+ -
1488
+ id: h4-font
1489
+ title: H4 Font
1490
+ title.zh: H4 字体
1491
+ type: variable-text
1492
+ default: "Arial, sans-serif"
1493
+ -
1494
+ id: h5-font
1495
+ title: H5 Font
1496
+ title.zh: H5 字体
1497
+ type: variable-text
1498
+ default: "Arial, sans-serif"
1499
+ -
1500
+ id: h6-font
1501
+ title: H6 Font
1502
+ title.zh: H6 字体
1503
+ type: variable-text
1504
+ default: "Arial, sans-serif"
1505
+ -
1506
+ id: heading-line-height-settings
1507
+ title: Heading Line Height Settings 📏
1508
+ title.zh: 标题行高设置 📏
1509
+ type: heading
1510
+ level: 2
1511
+ collapsed: true
1512
+ -
1513
+ id: h1-line-height
1514
+ title: H1 Line Height
1515
+ title.zh: H1 行高
1516
+ type: variable-number
1517
+ default: 1.5
1518
+ -
1519
+ id: h2-line-height
1520
+ title: H2 Line Height
1521
+ title.zh: H2 行高
1522
+ type: variable-number
1523
+ default: 1.5
1524
+ -
1525
+ id: h3-line-height
1526
+ title: H3 Line Height
1527
+ title.zh: H3 行高
1528
+ type: variable-number
1529
+ default: 1.5
1530
+ -
1531
+ id: h4-line-height
1532
+ title: H4 Line Height
1533
+ title.zh: H4 行高
1534
+ type: variable-number
1535
+ default: 1.5
1536
+ -
1537
+ id: h5-line-height
1538
+ title: H5 Line Height
1539
+ title.zh: H5 行高
1540
+ type: variable-number
1541
+ default: 1.5
1542
+ -
1543
+ id: h6-line-height
1544
+ title: H6 Line Height
1545
+ title.zh: H6 行高
1546
+ type: variable-number
1547
+ default: 1.5
1548
+ -
1549
+ id: heading-size-settings
1550
+ title: Heading Size Settings 🔠
1551
+ title.zh: 标题大小设置 🔠
1552
+ type: heading
1553
+ level: 2
1554
+ collapsed: true
1555
+ -
1556
+ id: h1-size
1557
+ title: H1 Size
1558
+ title.zh: H1 大小
1559
+ type: variable-number
1560
+ default: 2
1561
+ format: em
1562
+ -
1563
+ id: h2-size
1564
+ title: H2 Size
1565
+ title.zh: H2 大小
1566
+ type: variable-number
1567
+ default: 1.75
1568
+ format: em
1569
+ -
1570
+ id: h3-size
1571
+ title: H3 Size
1572
+ title.zh: H3 大小
1573
+ type: variable-number
1574
+ default: 1.5
1575
+ format: em
1576
+ -
1577
+ id: h4-size
1578
+ title: H4 Size
1579
+ title.zh: H4 大小
1580
+ type: variable-number
1581
+ default: 1.25
1582
+ format: em
1583
+ -
1584
+ id: h5-size
1585
+ title: H5 Size
1586
+ title.zh: H5 大小
1587
+ type: variable-number
1588
+ default: 1
1589
+ format: em
1590
+ -
1591
+ id: h6-size
1592
+ title: H6 Size
1593
+ title.zh: H6 大小
1594
+ type: variable-number
1595
+ default: 0.875
1596
+ format: em
1597
+ -
1598
+ id: heading-style-settings
1599
+ title: Heading Style Settings 🖌️
1600
+ title.zh: 标题样式设置 🖌️
1601
+ type: heading
1602
+ level: 2
1603
+ collapsed: true
1604
+ -
1605
+ id: h1-style
1606
+ title: H1 Style
1607
+ title.zh: H1 样式
1608
+ type: variable-select
1609
+ default: normal
1610
+ options:
1611
+ - normal
1612
+ - italic
1613
+ -
1614
+ id: h2-style
1615
+ title: H2 Style
1616
+ title.zh: H2 样式
1617
+ type: variable-select
1618
+ default: normal
1619
+ options:
1620
+ - normal
1621
+ - italic
1622
+ -
1623
+ id: h3-style
1624
+ title: H3 Style
1625
+ title.zh: H3 样式
1626
+ type: variable-select
1627
+ default: normal
1628
+ options:
1629
+ - normal
1630
+ - italic
1631
+ -
1632
+ id: h4-style
1633
+ title: H4 Style
1634
+ title.zh: H4 样式
1635
+ type: variable-select
1636
+ default: normal
1637
+ options:
1638
+ - normal
1639
+ - italic
1640
+ -
1641
+ id: h5-style
1642
+ title: H5 Style
1643
+ title.zh: H5 样式
1644
+ type: variable-select
1645
+ default: normal
1646
+ options:
1647
+ - normal
1648
+ - italic
1649
+ -
1650
+ id: h6-style
1651
+ title: H6 Style
1652
+ title.zh: H6 样式
1653
+ type: variable-select
1654
+ default: normal
1655
+ options:
1656
+ - normal
1657
+ - italic
1658
+ -
1659
+ id: heading-variant-settings
1660
+ title: Heading Variant Settings 🏷️
1661
+ title.zh: 标题变体设置 🏷️
1662
+ type: heading
1663
+ level: 2
1664
+ collapsed: true
1665
+ -
1666
+ id: h1-variant
1667
+ title: H1 Variant
1668
+ title.zh: H1 变体
1669
+ type: variable-select
1670
+ default: normal
1671
+ options:
1672
+ - normal
1673
+ - small-caps
1674
+ -
1675
+ id: h2-variant
1676
+ title: H2 Variant
1677
+ title.zh: H2 变体
1678
+ type: variable-select
1679
+ default: normal
1680
+ options:
1681
+ - normal
1682
+ - small-caps
1683
+ -
1684
+ id: h3-variant
1685
+ title: H3 Variant
1686
+ title.zh: H3 变体
1687
+ type: variable-select
1688
+ default: normal
1689
+ options:
1690
+ - normal
1691
+ - small-caps
1692
+ -
1693
+ id: h4-variant
1694
+ title: H4 Variant
1695
+ title.zh: H4 变体
1696
+ type: variable-select
1697
+ default: normal
1698
+ options:
1699
+ - normal
1700
+ - small-caps
1701
+ -
1702
+ id: h5-variant
1703
+ title: H5 Variant
1704
+ title.zh: H5 变体
1705
+ type: variable-select
1706
+ default: normal
1707
+ options:
1708
+ - normal
1709
+ - small-caps
1710
+ -
1711
+ id: h6-variant
1712
+ title: H6 Variant
1713
+ title.zh: H6 变体
1714
+ type: variable-select
1715
+ default: normal
1716
+ options:
1717
+ - normal
1718
+ - small-caps
1719
+ -
1720
+ id: heading-weight-settings
1721
+ title: Heading Weight Settings 🏋️
1722
+ title.zh: 标题粗细设置 🏋️
1723
+ type: heading
1724
+ level: 2
1725
+ collapsed: true
1726
+ -
1727
+ id: h1-weight
1728
+ title: H1 Weight
1729
+ title.zh: H1 粗细
1730
+ type: variable-select
1731
+ default: bold
1732
+ options:
1733
+ - normal
1734
+ - bold
1735
+ -
1736
+ id: h2-weight
1737
+ title: H2 Weight
1738
+ title.zh: H2 粗细
1739
+ type: variable-select
1740
+ default: bold
1741
+ options:
1742
+ - normal
1743
+ - bold
1744
+ -
1745
+ id: h3-weight
1746
+ title: H3 Weight
1747
+ title.zh: H3 粗细
1748
+ type: variable-select
1749
+ default: bold
1750
+ options:
1751
+ - normal
1752
+ - bold
1753
+ -
1754
+ id: h4-weight
1755
+ title: H4 Weight
1756
+ title.zh: H4 粗细
1757
+ type: variable-select
1758
+ default: bold
1759
+ options:
1760
+ - normal
1761
+ - bold
1762
+ -
1763
+ id: h5-weight
1764
+ title: H5 Weight
1765
+ title.zh: H5 粗细
1766
+ type: variable-select
1767
+ default: bold
1768
+ options:
1769
+ - normal
1770
+ - bold
1771
+ -
1772
+ id: h6-weight
1773
+ title: H6 Weight
1774
+ title.zh: H6 粗细
1775
+ type: variable-select
1776
+ default: bold
1777
+ options:
1778
+ - normal
1779
+ - bold
1780
+ -
1781
+ id: heading-formatting
1782
+ title: Heading Formatting
1783
+ title.zh: 标题格式
1784
+ type: variable-color
1785
+ default: '#888888'
1786
+ -
1787
+ id: link-settings
1788
+ title: Link Settings 🔗
1789
+ title.zh: 链接设置 🔗
1790
+ type: heading
1791
+ level: 2
1792
+ collapsed: true
1793
+ -
1794
+ id: link-color
1795
+ title: Link Color
1796
+ title.zh: 链接颜色
1797
+ type: variable-color
1798
+ default: '#1e90ff'
1799
+ -
1800
+ id: link-color-hover
1801
+ title: Link Hover Color
1802
+ title.zh: 链接悬停颜色
1803
+ type: variable-color
1804
+ default: '#1c86ee'
1805
+ -
1806
+ id: link-decoration
1807
+ title: Link Decoration
1808
+ title.zh: 链接装饰
1809
+ type: variable-select
1810
+ default: underline
1811
+ options:
1812
+ - none
1813
+ - underline
1814
+ -
1815
+ id: link-decoration-hover
1816
+ title: Link Hover Decoration
1817
+ title.zh: 链接悬停装饰
1818
+ type: variable-select
1819
+ default: underline
1820
+ options:
1821
+ - none
1822
+ - underline
1823
+ -
1824
+ id: link-decoration-thickness
1825
+ title: Link Decoration Thickness
1826
+ title.zh: 链接装饰厚度
1827
+ type: variable-number
1828
+ default: 1
1829
+ format: px
1830
+ -
1831
+ id: link-weight
1832
+ title: Link Weight
1833
+ title.zh: 链接粗细
1834
+ type: variable-select
1835
+ default: normal
1836
+ options:
1837
+ - normal
1838
+ - bold
1839
+ -
1840
+ id: link-unresolved-color
1841
+ title: Unresolved Link Color
1842
+ title.zh: 未解析链接颜色
1843
+ type: variable-color
1844
+ default: '#ff4500'
1845
+ -
1846
+ id: link-unresolved-opacity
1847
+ title: Unresolved Link Opacity
1848
+ title.zh: 未解析链接不透明度
1849
+ type: variable-number
1850
+ default: 0.7
1851
+ -
1852
+ id: link-unresolved-filter
1853
+ title: Unresolved Link Filter
1854
+ title.zh: 未解析链接滤镜
1855
+ type: variable-text
1856
+ default: brightness(0.8)
1857
+ -
1858
+ id: link-unresolved-decoration-style
1859
+ title: Unresolved Link Decoration Style
1860
+ title.zh: 未解析链接装饰样式
1861
+ type: variable-select
1862
+ default: dashed
1863
+ options:
1864
+ - none
1865
+ - underline
1866
+ - dashed
1867
+ - dotted
1868
+ -
1869
+ id: link-unresolved-decoration-color
1870
+ title: Unresolved Link Decoration Color
1871
+ title.zh: 未解析链接装饰颜色
1872
+ type: variable-color
1873
+ default: '#ff4500'
1874
+ -
1875
+ id: link-external-color
1876
+ title: External Link Color
1877
+ title.zh: 外部链接颜色
1878
+ type: variable-color
1879
+ default: '#32cd32'
1880
+ -
1881
+ id: link-external-color-hover
1882
+ title: External Link Hover Color
1883
+ title.zh: 外部链接悬停颜色
1884
+ type: variable-color
1885
+ default: '#2eb82e'
1886
+ -
1887
+ id: link-external-decoration
1888
+ title: External Link Decoration
1889
+ title.zh: 外部链接装饰
1890
+ type: variable-select
1891
+ default: underline
1892
+ options:
1893
+ - none
1894
+ - underline
1895
+ -
1896
+ id: link-external-decoration-hover
1897
+ title: External Link Hover Decoration
1898
+ title.zh: 外部链接悬停装饰
1899
+ type: variable-select
1900
+ default: underline
1901
+ options:
1902
+ - none
1903
+ - underline
1904
+ -
1905
+ id: inline-title-settings
1906
+ title: Inline Title Settings 🖋️
1907
+ title.zh: 行内标题设置 🖋️
1908
+ type: heading
1909
+ level: 2
1910
+ collapsed: true
1911
+ -
1912
+ id: inline-title-color
1913
+ title: Inline Title Color
1914
+ title.zh: 行内标题颜色
1915
+ type: variable-color
1916
+ default: '#000000'
1917
+ -
1918
+ id: inline-title-font
1919
+ title: Inline Title Font
1920
+ title.zh: 行内标题字体
1921
+ type: variable-text
1922
+ default: "Arial, sans-serif"
1923
+ -
1924
+ id: inline-title-line-height
1925
+ title: Inline Title Line Height
1926
+ title.zh: 行内标题行高
1927
+ type: variable-number
1928
+ default: 1.5
1929
+ -
1930
+ id: inline-title-size
1931
+ title: Inline Title Size
1932
+ title.zh: 行内标题大小
1933
+ type: variable-number
1934
+ default: 1.2
1935
+ format: em
1936
+ -
1937
+ id: inline-title-style
1938
+ title: Inline Title Style
1939
+ title.zh: 行内标题样式
1940
+ type: variable-select
1941
+ default: normal
1942
+ options:
1943
+ - normal
1944
+ - italic
1945
+ -
1946
+ id: inline-title-variant
1947
+ title: Inline Title Variant
1948
+ title.zh: 行内标题变体
1949
+ type: variable-select
1950
+ default: normal
1951
+ options:
1952
+ - normal
1953
+ - small-caps
1954
+ -
1955
+ id: inline-title-weight
1956
+ title: Inline Title Weight
1957
+ title.zh: 行内标题粗细
1958
+ type: variable-select
1959
+ default: bold
1960
+ options:
1961
+ - normal
1962
+ - bold
1963
+ -
1964
+ id: code-settings
1965
+ title: Code Block Settings 💻
1966
+ title.zh: 代码块设置 💻
1967
+ type: heading
1968
+ level: 2
1969
+ collapsed: true
1970
+ -
1971
+ id: code-background-dark
1972
+ title: Dark Mode Code Background
1973
+ title.zh: 暗模式下代码背景颜色
1974
+ type: variable-color
1975
+ default: '#2d2d2d'
1976
+ -
1977
+ id: code-normal-dark
1978
+ title: Dark Mode Code Normal Color
1979
+ title.zh: 暗模式下非高亮语法颜色
1980
+ type: variable-color
1981
+ default: '#ffffff'
1982
+ -
1983
+ id: code-comment-dark
1984
+ title: Dark Mode Code Comment Color
1985
+ title.zh: 暗模式下注释颜色
1986
+ type: variable-color
1987
+ default: '#999988'
1988
+ -
1989
+ id: code-function-dark
1990
+ title: Dark Mode Code Function Color
1991
+ title.zh: 暗模式下函数颜色
1992
+ type: variable-color
1993
+ default: '#a6e22e'
1994
+ -
1995
+ id: code-important-dark
1996
+ title: Dark Mode Code Important Color
1997
+ title.zh: 暗模式下重要内容, 正则表达式颜色
1998
+ type: variable-color
1999
+ default: '#f92672'
2000
+ -
2001
+ id: code-keyword-dark
2002
+ title: Dark Mode Code Keyword Color
2003
+ title.zh: 暗模式下关键词颜色
2004
+ type: variable-color
2005
+ default: '#f92672'
2006
+ -
2007
+ id: code-operator-dark
2008
+ title: Dark Mode Code Operator Color
2009
+ title.zh: 暗模式下操作符颜色
2010
+ type: variable-color
2011
+ default: '#f92672'
2012
+ -
2013
+ id: code-property-dark
2014
+ title: Dark Mode Code Property Color
2015
+ title.zh: 暗模式下属性颜色
2016
+ type: variable-color
2017
+ default: '#66d9ef'
2018
+ -
2019
+ id: code-punctuation-dark
2020
+ title: Dark Mode Code Punctuation Color
2021
+ title.zh: 暗模式下标点颜色
2022
+ type: variable-color
2023
+ default: '#ffffff'
2024
+ -
2025
+ id: code-string-dark
2026
+ title: Dark Mode Code String Color
2027
+ title.zh: 暗模式下字符串颜色
2028
+ type: variable-color
2029
+ default: '#e6db74'
2030
+ -
2031
+ id: code-tag-dark
2032
+ title: Dark Mode Code Tag Color
2033
+ title.zh: 暗模式下标签, 符号, 常量颜色
2034
+ type: variable-color
2035
+ default: '#a6e22e'
2036
+ -
2037
+ id: code-value-dark
2038
+ title: Dark Mode Code Value Color
2039
+ title.zh: 暗模式下值颜色
2040
+ type: variable-color
2041
+ default: '#ae81ff'
2042
+ -
2043
+ id: code-background-light
2044
+ title: Light Mode Code Background
2045
+ title.zh: 亮模式下代码背景颜色
2046
+ type: variable-color
2047
+ default: '#f5f5f5'
2048
+ -
2049
+ id: code-normal-light
2050
+ title: Light Mode Code Normal Color
2051
+ title.zh: 亮模式下非高亮语法颜色
2052
+ type: variable-color
2053
+ default: '#000000'
2054
+ -
2055
+ id: code-comment-light
2056
+ title: Light Mode Code Comment Color
2057
+ title.zh: 亮模式下注释颜色
2058
+ type: variable-color
2059
+ default: '#6a737d'
2060
+ -
2061
+ id: code-function-light
2062
+ title: Light Mode Code Function Color
2063
+ title.zh: 亮模式下函数颜色
2064
+ type: variable-color
2065
+ default: '#6f42c1'
2066
+ -
2067
+ id: code-important-light
2068
+ title: Light Mode Code Important Color
2069
+ title.zh: 亮模式下重要内容, 正则表达式颜色
2070
+ type: variable-color
2071
+ default: '#d73a49'
2072
+ -
2073
+ id: code-keyword-light
2074
+ title: Light Mode Code Keyword Color
2075
+ title.zh: 亮模式下关键词颜色
2076
+ type: variable-color
2077
+ default: '#d73a49'
2078
+ -
2079
+ id: code-operator-light
2080
+ title: Light Mode Code Operator Color
2081
+ title.zh: 亮模式下操作符颜色
2082
+ type: variable-color
2083
+ default: '#d73a49'
2084
+ -
2085
+ id: code-property-light
2086
+ title: Light Mode Code Property Color
2087
+ title.zh: 亮模式下属性颜色
2088
+ type: variable-color
2089
+ default: '#005cc5'
2090
+ -
2091
+ id: code-punctuation-light
2092
+ title: Light Mode Code Punctuation Color
2093
+ title.zh: 亮模式下标点颜色
2094
+ type: variable-color
2095
+ default: '#24292e'
2096
+ -
2097
+ id: code-string-light
2098
+ title: Light Mode Code String Color
2099
+ title.zh: 亮模式下字符串颜色
2100
+ type: variable-color
2101
+ default: '#032f62'
2102
+ -
2103
+ id: code-tag-light
2104
+ title: Light Mode Code Tag Color
2105
+ title.zh: 亮模式下标签, 符号, 常量颜色
2106
+ type: variable-color
2107
+ default: '#22863a'
2108
+ -
2109
+ id: code-value-light
2110
+ title: Light Mode Code Value Color
2111
+ title.zh: 亮模式下值颜色
2112
+ type: variable-color
2113
+ default: '#b31d28'
2114
+ -
2115
+ id: alternative-checkboxes
2116
+ title: Alternative Checkboxes ✅
2117
+ title.zh: 其他复选框样式 ✅
2118
+ type: heading
2119
+ level: 2
2120
+ collapsed: true
2121
+ -
2122
+ id: enable-alternative-checkboxes
2123
+ title: Enable Alternative Checkboxes
2124
+ title.zh: 启用其他复选框样式
2125
+ description: Disable this if you are using your own implementation via a CSS Snippet.
2126
+ description.zh: 如果您正在使用自己的 CSS 片段实现这一功能,请禁用此功能。
2127
+ default: true
2128
+ type: class-toggle
2129
+ -
2130
+ id: expreiental-feature
2131
+ title: Experimental Features 🧪
2132
+ title.zh: 实验性功能 🧪
2133
+ type: heading
2134
+ level: 2
2135
+ collapsed: true
2136
+ -
2137
+ id: oreo-tab-style
2138
+ title: Tab Style
2139
+ title.zh: Tab样式
2140
+ type: class-select
2141
+ allowEmpty: false
2142
+ default: oreo-default-tab
2143
+ options:
2144
+ -
2145
+ label: Default
2146
+ value: oreo-default-tab
2147
+ -
2148
+ label: Depth
2149
+ value: oreo-depth-tab-toggle
2150
+ -
2151
+ label: Minimalistic
2152
+ value: oreo-mini-tab-toggle
2153
+ -
2154
+ label: Safari-style (Animated)
2155
+ value: oreo-alternate-tab-toggle
2156
+ -
2157
+ label: Safari-style (Vanilla)
2158
+ value: oreo-safari-tab-toggle
2159
+ -
2160
+ id: Credits
2161
+ title: Support Others 🎇
2162
+ title.zh: 支持他人 🎇
2163
+ description: This theme cannot have been made without the help of these people, please support them if you can!
2164
+ description.zh: 这个主题的制作离不开这些人的帮助,如果你有能力,请支持他们!
2165
+ type: heading
2166
+ level: 2
2167
+ collapsed: true
2168
+ -
2169
+ id: anuppuccin-url-donate
2170
+ title: anubisnekhet for different tabs
2171
+ title.zh: anubisnekhet 不一样的tab界面
2172
+ description: "Support link: [buy him a coffee](https://www.buymeacoffee.com/anubisnekhet)"
2173
+ description.zh: "支持链接: [给他买杯咖啡](https://www.buymeacoffee.com/anubisnekhet)"
2174
+ type: info-text
2175
+ markdown: true
2176
+ -
2177
+ id: kepano-url-donate
2178
+ title: kepano for different check boxes
2179
+ title.zh: kepano 不同的复选框样式
2180
+ description: "Support link: [buy him a coffee](https://www.buymeacoffee.com/kepano)"
2181
+ description.zh: "支持链接: [给他买杯咖啡](https://www.buymeacoffee.com/kepano)"
2182
+ type: info-text
2183
+ markdown: true
2184
+ -
2185
+ id: Korcz-url-donate
2186
+ title: Korcz for switching between checkboxes
2187
+ title.zh: Korcz 切换复选框样式
2188
+ description: "Support link: This kind man did not leave a support link, so here is his [Github homepage](https://github.com/damiankorcz)"
2189
+ description.zh: "支持链接: 这位好心人并未留下赞助链接,请自行前往他的[Github主页](https://github.com/damiankorcz)"
2190
+ type: info-text
2191
+ markdown: true
2192
+ -
2193
+ id: author-info
2194
+ title: Author Information ℹ
2195
+ title.zh: 作者信息 ℹ
2196
+ type: heading
2197
+ level: 2
2198
+ collapsed: false
2199
+ -
2200
+ id: author
2201
+ title: Author
2202
+ title.zh: 作者
2203
+ type: info-text
2204
+ description: "Oreo Theme created with ❤︎ by carols12352. Support at: BuyMeACoffee/(QAQ due to regional differences you cannot buy me a coffee, just enjoy the theme and provide feedback!)"
2205
+ description.zh: "Oreo 主题由 carols12352 创建。支持请访问: BuyMeACoffee/(QAQ 因为地区政策原因你还不能给我买一杯咖啡,请享受主题并且及时给出反馈就好!)"
2206
+ markdown: false
2207
+ */
2208
+ /* @plugins
2209
+ name: Oreo Theme
2210
+ id: oreo-theme
2211
+ plugins:
2212
+ -
2213
+ name: Style Settings
2214
+ id: style-settings
2215
+ description: Allows customization of CSS variables through a user-friendly interface.
2216
+ description.zh: 通过用户友好的界面允许自定义 CSS 变量。
2217
+ -
2218
+ name: Kanban
2219
+ id: kanban
2220
+ description: Provides minimalist styling for the Kanban plugin.
2221
+ description.zh: 为 Kanban 插件提供简约的样式。
2222
+ -
2223
+ name: Calendar
2224
+ id: calendar
2225
+ description: Integrates calendar views and customizations.
2226
+ description.zh: 集成日历视图和自定义功能。
2227
+ -
2228
+ name: CodeMirror Options
2229
+ id: codemirror-options
2230
+ description: Enhances code block appearance and syntax highlighting.
2231
+ description.zh: 增强代码块外观和语法高亮。
2232
+ -
2233
+ name: Sliding Panes
2234
+ id: sliding-panes
2235
+ description: Adds horizontal sliding panes functionality.
2236
+ description.zh: 添加水平滑动窗格功能。
2237
+ -
2238
+ name: Obsidian Tabs
2239
+ id: obsidian-tabs
2240
+ description: Customizes tab appearance and behavior.
2241
+ description.zh: 自定义标签的外观和行为。
2242
+ */