-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINDEX.css
137 lines (117 loc) · 3.75 KB
/
INDEX.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
@font-face {
font-family: "NotoSansMono";
src: url("/custom/CONFIG/NotoSansMono.ttf") format("truetype");
}
/* COLOR DEFINITION START */
:root {
--color-index-0: rgb(0, 0, 0);
--color-index-16: rgb(16, 16, 16);
--color-index-32: rgb(32, 32, 32);
--color-index-48: rgb(48, 48, 48);
--color-index-64: rgb(64, 64, 64);
--color-index-80: rgb(80, 80, 80);
--color-index-96: rgb(96, 96, 96);
--color-index-112: rgb(112, 112, 112);
--color-index-128: rgb(128, 128, 128);
--color-index-144: rgb(144, 144, 144);
--color-index-160: rgb(160, 160, 160);
--color-index-176: rgb(176, 176, 176);
--color-index-192: rgb(192, 192, 192);
--color-index-208: rgb(208, 208, 208);
--color-index-224: rgb(224, 224, 224);
--color-index-240: rgb(240, 240, 240);
}
/* COLOR DEFINITION END */
/* TAB START */
:root {
--active-tab-background-color: var(--color-index-64);
--active-tab-text-color: var(--color-index-128);
--inactive-tab-background-color: var(--color-index-16);
--inactive-tab-text-color: var(--color-index-128);
}
/* TAB END */
/* TITLE OF THE NOTE START */
:root {
--input-background-color: var(--color-index-0) !important;
--input-text-color: var(--color-index-112);
}
/* TITLE OF THE NOTE END */
:root {
--theme-style: dark;
--accented-background-color: var(--color-index-0);
--active-item-background-color: var(--color-index-0);
--active-item-text-color: var(--color-index-192);
--button-background-color: transparent;
--button-border-color: transparent;
--button-border-radius: 0px;
--button-disabled-background-color: transparent;
--button-text-color: darkgrey;
--detail-font-family: "NotoSansMono";
--detail-font-size: normal;
--detail-text-font-family: "NotoSansMono";
--header-background-color: red !important;
--hover-item-background-color: var(--color-index-0);
--hover-item-text-color: var(--color-index-128);
--launcher-pane-background-color: var(--color-index-0);
--left-pane-background-color: var(--color-index-0);
--left-pane-text-color: var(--color-index-112);
--link-color: var(--color-index-64);
--main-background-color: black;
--main-border-color: var(--color-index-32);
--main-font-family: "NotoSansMono";
--main-font-size: normal;
--main-text-color: var(--color-index-192);
--menu-background-color: black;
--menu-text-color: grey;
--mermaid-theme: dark;
--modal-backdrop-color: black;
--modal-background-color: black;
--monospace-font-family: "NotoSansMono";
--more-accented-background-color: var(--color-index-16);
--muted-text-color: darkgrey;
--primary-button-background-color: transparent;
--primary-button-border-color: grey;
--primary-button-text-color: grey;
--scrollbar-background-color: #202020;
--scrollbar-border-color: black;
--scrollbar-border-color: transparent;
--tooltip-background-color: #202020;
--tree-font-family: inherit;
--tree-font-size: normal;
--bs-border-color: var(--color-index-16);
}
#root-widget ::-webkit-scrollbar {
width: 8px;
}
#root-widget ::-webkit-scrollbar-thumb {
border-radius: 4px;
}
input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: var(--color-index-16) !important;
box-shadow: 0 0 0 0 transparent !important;
}
body .note-detail-text {
font-size: 1rem;
}
body .CodeMirror {
filter: invert(100%);
}
span.fancytree-node,
span.fancytree-node:hover {
border: 0px;
}
div.gutter.gutter-horizontal {
background: linear-gradient(to bottom, transparent, var(--color-index-16), transparent);
}
.tree-actions {
border: 0px !important;
}
.rendered-note-attributes {
display: none;
}
div#right-pane li::marker {
content: "⚫ ";
}