-
Notifications
You must be signed in to change notification settings - Fork 0
/
chameleon-light.css
249 lines (206 loc) · 8.02 KB
/
chameleon-light.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/*
* Chameleon (Light): A custom colour theme for Trilium Next. (https://github.com/DavidFuchs/trilium-chameleon-theme)
*
* This theme makes liberal use of variables and relative brightness calculations to provide a theme that's both easy on the eyes,
* and very simple to adjust to your preference. Accent colors, text colors, and background colors are all easily adjustable.
*
* By default, the theme use a teal colour that I happen to like. But you can change the accent everywhere simply by modifying
* the variable called '--palette-accent-hue' to a different number between 0 and 359. Red is 0, for example.
*
* This is the light variant of the theme. There is also a dark variant.
*
* Installation:
* 1. Create a new note in Trilium called 'Chameleon (Light)'. Set the 'Note type' to 'CSS', and add a label `#appTheme=chameleon-light`.
* 2. Paste the contents of this document into the note.
* 3. (Optional, but recommended) Install the code font by uploading it as a child document of the new CSS note.
* 4. Open the top-left menu, select 'Options', and then open the 'Appearance' window.
* 5. Select 'Chameleon (Light)' from the 'Theme' drop-down.
*
* Trilium Theming docs: https://triliumnext.github.io/Docs/Wiki/themes
* Trilium Theme gallery: https://triliumnext.github.io/Docs/Wiki/theme-gallery.html
*/
/* Used only for the code font. It's recommended that you install this or an alternative. 'JetBrainsLight' (built-in) will be used as a fallback. */
@font-face {
font-family: "Inconsolata";
src: url("../../../custom/fonts/InconsolataNerdFontMono-Bold.woff2")
format("woff2");
}
:root {
/* It's generally sufficient to modify just this first set of variables. */
--palette-accent-hue: 185;
--palette-accent-brightness: 25%;
--palette-text-brightness: 30%;
--palette-background-brightness: 90%;
--ui-font: sans-serif;
/* The below variables are relative to the above selections. */
--palette-accent-lighter1: hsl(
var(--palette-accent-hue),
100%,
calc(var(--palette-accent-brightness) + 10%)
);
--palette-accent-default: hsl(
var(--palette-accent-hue),
100%,
var(--palette-accent-brightness)
);
--palette-accent-darker1: hsl(
var(--palette-accent-hue),
100%,
calc(var(--palette-accent-brightness) - 10%)
);
--palette-text-lighter1: hsl(
230,
10%,
calc(var(--palette-text-brightness) - 20%)
);
--palette-text-default: hsl(230, 10%, var(--palette-text-brightness));
--palette-text-darker1: hsl(
230,
10%,
calc(var(--palette-text-brightness) + 20%)
);
--palette-background-lighter2: hsl(
230,
10%,
calc(var(--palette-background-brightness) + 10%)
);
--palette-background-lighter1: hsl(
230,
10%,
calc(var(--palette-background-brightness) + 5%)
);
--palette-background-default: hsl(
230,
10%,
var(--palette-background-brightness)
);
--palette-background-darker1: hsl(
230,
10%,
calc(var(--palette-background-brightness) - 5%)
);
--palette-background-darker2: hsl(
230,
10%,
calc(var(--palette-background-brightness) - 10%)
);
--palette-contrast-default: white;
--palette-contrast-inverted: black;
}
:root {
--theme-style: light;
--mermaid-theme: default;
--main-font-family: var(--ui-font), sans-serif;
--main-font-size: normal;
--tree-font-family: var(--ui-font), sans-serif;
--tree-font-size: normal;
--detail-font-family: var(--ui-font), sans-serif;
--detail-font-size: normal;
--monospace-font-family: "Inconsolata", "JetBrainsLight";
--monospace-font-size: normal;
--main-background-color: var(--palette-background-default);
--main-text-color: var(--palette-text-default);
--main-border-color: var(--palette-text-lighter1);
--accented-background-color: var(--palette-background-default);
--more-accented-background-color: var(--palette-background-lighter1);
--button-text-color: var(--palette-text-default);
--button-background-color: var(--palette-background-default);
--button-disabled-text-color: var(--palette-text-default);
--button-disabled-background-color: var(--palette-text-lighter1);
--button-border-color: var(--palette-background-darker1);
--button-border-radius: 3px;
--primary-button-text-color: var(--palette-contrast-default);
--primary-button-background-color: var(--palette-accent-default);
--primary-button-border-color: var(--palette-accent-lighter1);
/* Used by toolbar buttons at the top of notes. */
--muted-text-color: var(--palette-text-default);
/* Used by the title of notes. Background doesn't appear to be used? */
--input-text-color: var(--palette-text-default);
--input-background-color: var(--palette-background-lighter1);
/* Used when hovering over context menu items. */
--hover-item-text-color: var(--palette-contrast-default);
--hover-item-background-color: var(--palette-accent-lighter1);
/* Used for the selected item in the tree view. */
--active-item-text-color: var(--palette-contrast-default);
--active-item-background-color: var(--palette-accent-lighter1);
/* Context menu text color. */
--menu-text-color: var(--palette-text-default);
--menu-background-color: var(--palette-background-default);
/* Modal dialogs (e.g. deleting a note). */
--modal-background-color: var(--palette-background-default);
--modal-backdrop-color: var(--palette-contrast-inverted);
/* This is the tree view. */
--left-pane-background-color: var(--palette-background-lighter1);
--left-pane-text-color: var(--palette-text-default);
/* This is the gutter to the left of the tree view. */
--launcher-pane-background-color: var(--palette-background-default);
--launcher-pane-text-color: var(--palette-text-lighter1);
/* Currently selected tab. */
--active-tab-text-color: var(--palette-contrast-default);
--active-tab-background-color: var(--palette-accent-lighter1);
--active-tab-hover-background-color: var(--palette-accent-default);
/* Unselected tabs. */
--inactive-tab-text-color: var(--palette-text-default);
--inactive-tab-background-color: var(--palette-background-darker1);
--inactive-tab-hover-background-color: var(--palette-background-darker2);
/* Scrollbar border; unfortunately, there is no variable for the scrollbar that doesn't affect other items. */
--scrollbar-border-color: var(--palette-accent-lighter1);
/* Tooltips. */
--tooltip-background-color: var(--palette-background-default);
/* Hyperlinks. */
--link-color: var(--palette-accent-lighter1);
}
/* Ensure the colour of disabled items doesn't look like it's from a different palette. */
#context-menu-container .dropdown-item.disabled {
color: var(--palette-text-lighter1) !important;
}
/* The background on the search button looks out of place. */
button.search-button {
background-color: transparent !important;
}
/* Doesn't seem to be a variable to control the box shadow, so let's just disable it. */
* {
box-shadow: none !important;
}
/* Make 'To Do' items in tree use the accent color, instead of bright red. */
span.fancytree-node.todo .fancytree-title {
color: var(--palette-accent-default) !important;
}
.fancytree-title {
font-size: 1em !important;
}
.fancytree-custom-icon {
font-size: 1.25em !important;
}
.tree-wrapper .unhoist-button {
font-size: 150% !important;
}
/* Let's gooder up the menu button, Bubbs. */
body .global-menu-button:not(:hover) {
background-color: transparent;
filter: invert(50%) sepia(100%)
hue-rotate(calc((var(--palette-accent-hue) - 52) * 1deg)) saturate(1000%)
brightness(85%);
width: 41px;
margin-left: 6px;
}
/* Below selectors are for Sharing mode. */
body[data-note-id] {
background-color: var(--launcher-pane-background-color);
color: var(--launcher-pane-text-color);
font-family: var(--main-font-family);
}
body[data-note-id] #layout {
background-color: var(--left-pane-background-color);
color: var(--left-pane-text-color);
}
body[data-note-id] #main {
background-color: var(--main-background-color);
color: var(--main-text-color);
}
body[data-note-id] a {
color: var(--link-color);
}
body[data-note-id] pre {
padding: 1em;
}