File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Didn't find much time to create a theme yet,
3
+ * so there are just a few non-default settings for now.
4
+ */
5
+ : root ,
6
+ : root [color-theme = "light" ] {
7
+ --header-background : # 222222 ;
8
+ --footer-background : # e6522c ;
9
+ --footer-link-color : # ffffff ;
10
+ --footer-link-color-visited : # ffffff ;
11
+ }
12
+
13
+ @media (prefers-color-scheme : light) {
14
+ : root {
15
+ --header-background : # 222222 ;
16
+ --footer-background : # e6522c ;
17
+ --footer-link-color : # ffffff ;
18
+ --footer-link-color-visited : # ffffff ;
19
+ }
20
+ }
21
+
22
+ : root [color-theme = "dark" ]
23
+ {
24
+ --header-background : # 111c24 ;
25
+ --body-background : # 1f1f21 ;
26
+ --footer-background : # e6522c ;
27
+ --footer-link-color : # ffffff ;
28
+ --footer-link-color-visited : # ffffff ;
29
+ }
30
+
31
+ @media (prefers-color-scheme : dark) {
32
+ : root {
33
+ --header-background : # 111c24 ;
34
+ --body-background : # 1f1f21 ;
35
+ --footer-background : # e6522c ;
36
+ --footer-link-color : # ffffff ;
37
+ --footer-link-color-visited : # ffffff ;
38
+ }
39
+ }
40
+
41
+ .gdoc-markdown pre , .gdoc-markdown code {
42
+ overflow : auto;
43
+ }
You can’t perform that action at this time.
0 commit comments