forked from kisrea-team/NoDrogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
copy.css
132 lines (109 loc) · 3.13 KB
/
copy.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
/* :root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
--notion-red: rgb(255, 226, 221);
--notion-pink: rgb(245, 224, 233);
--notion-blue: rgb(211, 229, 239);
--notion-purple: rgb(232, 222, 238);
--notion-green: rgb(219, 237, 219);
--notion-yellow: rgb(253, 236, 200);
--notion-orange: rgb(250, 222, 201);
--notion-brown: rgb(238, 224, 218);
--notion-gray: rgb(227, 226, 224);
--notion-default: rgb(240, 239, 238);
--notion-dark-red: rgb(110, 54, 48);
--notion-dark-pink: rgb(105, 49, 76);
--notion-dark-blue: rgb(40, 69, 108);
--notion-dark-purple: rgb(73, 47, 100);
--notion-dark-green: rgb(43, 89, 63);
--notion-dark-yellow: rgb(137, 99, 42);
--notion-dark-orange: rgb(133, 76, 29);
--notion-dark-brown: rgb(96, 59, 44);
--notion-dark-gray: rgb(90, 90, 90);
--notion-dark-default: rgb(55, 55, 55);
}
[data-theme=dark] {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
--notion-red: rgb(110, 54, 48);
--notion-pink: rgb(105, 49, 76);
--notion-blue: rgb(40, 69, 108);
--notion-purple: rgb(73, 47, 100);
--notion-green: rgb(43, 89, 63);
--notion-yellow: rgb(137, 99, 42);
--notion-orange: rgb(133, 76, 29);
--notion-brown: rgb(96, 59, 44);
--notion-gray: rgb(90, 90, 90);
--notion-default: rgb(55, 55, 55);
} */
.notion-red_background {
background-color: var(--notion-red);
}
.notion-pink_background {
background-color: var(--notion-pink);
}
.notion-blue_background {
background-color: var(--notion-blue);
}
.notion-purple_background {
background-color: var(--notion-purple);
}
.notion-green_background {
background-color: var(--notion-green);
}
.notion-yellow_background {
background-color: var(--notion-yellow);
}
.notion-orange_background {
background-color: var(--notion-orange);
}
.notion-brown_background {
background-color: var(--notion-brown);
}
.notion-gray_background {
background-color: var(--notion-gray);
}
.notion-green_background {
background-color: var(--notion-green);
}
.notion-default_background {
background-color: var(--notion-default);
}
/*
[data-theme="dark"] {
.notion-red_background {
background-color: var(--notion-dark-red);
}
.notion-pink_background {
background-color: var(--notion-dark-pink);
}
.notion-blue_background {
background-color: var(--notion-dark-blue);
}
.notion-purple_background {
background-color: var(--notion-dark-purple);
}
.notion-teal_background {
background-color: var(--notion-dark-teal);
}
.notion-yellow_background {
background-color: var(--notion-dark-yellow);
}
.notion-orange_background {
background-color: var(--notion-dark-orange);
}
.notion-brown_background {
background-color: var(--notion-dark-brown);
}
.notion-gray_background {
background-color: var(--notion-dark-gray);
}
.notion-green_background {
background-color: var(--notion-dark-green);
}
.notion-default_background {
background-color: var(--notion-dark-default);
}
} */