-
Notifications
You must be signed in to change notification settings - Fork 23
/
[user] Themed colours.css
132 lines (110 loc) · 2.91 KB
/
[user] Themed colours.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
/*
Theme colours
https://github.com/replete/obsidian-minimal-theme-css-snippets
*/
.theme-dark.minimal-default-dark {
/* --accent-h:181 !important; */
/* --accent-s:37% !important; */
/* --accent-l:71% !important; */
}
.theme-dark.minimal-atom-dark {
--accent-h:193 !important;
/* --accent-s:46 !important; */
/* --accent-l:50 !important; */
}
.theme-dark.minimal-ayu-dark {
--accent-h:203 !important;
--accent-s:49% !important;
--accent-l:70% !important;
}
.theme-dark.minimal-catppuccin-dark {
--accent-h:207 !important;
--accent-s:65% !important;
--accent-l:70% !important;
}
.theme-dark.minimal-dracula-dark {
--accent-h:215 !important;
--accent-s:60% !important;
-accent-l:71% !important;
}
.theme-dark.minimal-everforest-dark {
--accent-h:145 !important;
--accent-s:27% !important;
--accent-l:61% !important;
--text-selection:hsla(var(--accent-h),var(--accent-s),calc(var(--accent-l) - 5%),0.2);
}
.theme-dark.minimal-gruvbox-dark {
--accent-h:121 !important;
--accent-s:37% !important;
--accent-l:71% !important;
}
.theme-dark.minimal-nord-dark {
--accent-h:205 !important;
--accent-s:77% !important;
--accent-l:76% !important;
}
.theme-dark.minimal-rose-pine-dark {
--accent-h:2400 !important;
--accent-s:37% !important;
--accent-l:65% !important;
}
.theme-dark.minimal-solarized-dark {
--accent-h:185 !important;
--accent-s:37% !important;
--accent-l:51% !important;
}
.theme-light.minimal-atom-light {
--accent-h:195 !important;
--accent-s:47% !important;
--accent-l:65% !important;
}
.theme-light.minimal-ayu-light {
/* --accent-h:210 !important;
--accent-s:47% !important;
--accent-l:75% !important; */
}
.theme-light.minimal-catppuccin-light {
--accent-h:225 !important;
--accent-s:47% !important;
--accent-l:70% !important;
}
.theme-light.minimal-everforest-light {
--accent-h:175 !important;
--accent-s:27% !important;
--accent-l:54% !important;
}
.theme-light.minimal-gruvbox-light {
--accent-h:165 !important;
--accent-s:20% !important;
--accent-l:54% !important;
}
.theme-light.minimal-macos-light {
--accent-h:205 !important;
--accent-s:40% !important;
--accent-l:64% !important;
}
.theme-light.minimal-nord-light {
--accent-h:225 !important;
--accent-s:37% !important;
--accent-l:66% !important;
}
.theme-light.minimal-notion-light {
--accent-h:190 !important;
--accent-s:37% !important;
--accent-l:64% !important;
}
.theme-light.minimal-rose-pine-light {
--accent-h:20 !important;
--accent-s:30% !important;
--accent-l:70% !important;
}
.theme-light.minimal-solarized-light {
--accent-h:20 !important;
--accent-s:35% !important;
--accent-l:68% !important;
}
.theme-light.minimal-things-light {
--accent-h:225 !important;
--accent-s:40% !important;
--accent-l:70% !important;
}