Spaces:
Running
Running
File size: 969 Bytes
ab4a702 |
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 |
:root {
color-scheme: light dark;
/* these are the light colors */
--background: #eee;
--code-background: #ccc;
--link: #045b88;
--panel-color: #000;
--panel-background: #ddd;
--panel-emphasis: rgb(20, 62, 84);
--tooltip-background: #eee;
--tooltip-border: rgba(0, 0, 0, 0.1);
--source-tab-color: black;
--source-tab-background: #CCC;
--source-tab-active-background: #FFF;
--source-tab-active-shadow: #EEE;
}
@media (prefers-color-scheme: dark) {
:root {
/* these are the dark colors */
--background: #000;
--code-background: #555;
--link: #02abff;
--panel-color: #02abff;
--panel-background: #222;
--panel-emphasis: rgb(115, 206, 255);
--tooltip-background: #111;
--tooltip-border: rgba(255, 255, 255, 0.1);
--source-tab-color: white;
--source-tab-background: #444;
--source-tab-active-background: #282828;
--source-tab-active-shadow: rgb(167, 167, 167);
}
}
.homePage {
}
|