-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmaterial-palenight-roam.css
113 lines (110 loc) · 4.15 KB
/
material-palenight-roam.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
@import url('https://abhayprasanna.github.io/better-dark-age.css');
@import url('https://fonts.googleapis.com/css?family=Crimson+Text|Noto+Sans+Mono|Bitter|Work+Sans');
@media (prefers-color-scheme: light) {
:root {
/* FONTS */
--global-font : 'Work Sans', sans-serif;
--secondary-font : 'Noto Sans Mono', monospace;
--header-font : 'Bitter', serif;
/* WIDTH FIXES - default 568px,1032px - increase to increase WIDTH */
--reduce-padding-right : 3400px;
--reduce-padding-left : 3400px;
/* COLORS - One light*/
--page-links : #283593;
--attributes-color : #986801;
--external-links : #50A14E;
--links-hover : #E4564A;
--hashtags : #A626A4;
--body-text : #292D31;
--italics-color : #E4564A;
--bold-color : #0184BC;
--highlight-text-color : #292D31;
--highlighter : #FFFF80;
--background : #FAFAFA;
--sidebar-background : #EAEAEB;
--sidebar-text : #292D31;
--page-heading : #283593;
--daily-heading : #283593;
--heading1 : #292D31;
--heading2 : #292D31;
--heading3 : #292D31;
--bullets : #3F51B5;
--closed-bullets : #3F51B577;
--references : #3F51B5;
--block-reference-text : #0184BC;
--namespaces : #E4564A;
--all-pages-mentions : #0184BC;
--cursor : #292D31;
--icons : #3F51B5;
--icons-hover : #E4564A;
--filter-icon : #50A14E;
/* FONT SIZES */
--page-head-font-size : 2.2em;
/* DROPDOWN MENU */
--dropdown-menu-background: #EAEAEB;
--dropdown-menu-highlight : #FAFAFA;
--dropdown-menu-text : #292D31;
--dropdown-newpage : #0184BC;
/* SEARCH BAR */
--search-bar-background : #F7F8FA;
--search-bar-text : #292D31;
/* KANBAN CARD COLORS */
--kanban-main-background : #FAFAFA;
--kanban-column-background: #EAEAEB;
--kanban-card-background : #FAFAFA;
--kanban-text-hover : #E4564A;
}
}
@media (prefers-color-scheme: dark) {
:root {
/* FONTS */
--global-font : 'Work Sans', sans-serif;
--secondary-font : 'Noto Sans Mono', monospace;
--header-font : 'Bitter', serif;
/* WIDTH FIXES - default 568px,1032px - increase to increase WIDTH */
--reduce-padding-right : 3400px;
--reduce-padding-left : 3400px;
/* COLORS (HT: Mike Judd for the recommendation */
--page-links : #80cbc4;
--attributes-color : #f07178;
--external-links : #c3e88d;
--links-hover : #c792ea;
--hashtags : #89ddff;
--body-text : #e8e6e3;
--italics-color : #f78c6c;
--bold-color : #ffcb6b;
--highlight-text-color : #e8e6e3;
--highlighter : #444267;
--background : #292D3E;
--sidebar-background : #3B415C;
--sidebar-text : #e8e6e3;
--page-heading : #80cbc4;
--daily-heading : #80cbc4;
--headings : #e8e6e3;
--bullets : #80cbc4;
--closed-bullets : #8A89B3;
--references : #80cbc4;
--block-reference-text : #ffcb6b;
--namespaces : #f78c6c;
--all-pages-mentions : #ffcb6b;
--cursor : #e8e6e3;
--icons : #80cbc4;
--icons-hover : #c792ea;
--filter-icon : #c3e88d;
/* FONT SIZES */
--page-head-font-size : 2.2em;
/* DROPDOWN MENU */
--dropdown-menu-background: #3B415C;
--dropdown-menu-highlight : #292D3E;
--dropdown-menu-text : #e8e6e3;
--dropdown-newpage : #ffcb6b;
/* SEARCH BAR */
--search-bar-background : #202331;
--search-bar-text : #e8e6e3;
/* KANBAN CARD COLORS */
--kanban-main-background : #292D3E;
--kanban-column-background: #3B415C;
--kanban-card-background : #292D3E;
--kanban-text-hover : #c792ea;
}
}