b99412b4a1
* feat: update logos, accents * fix apple-touch-icon.png size * remove width, length --------- Co-authored-by: DokterKaj <dokterkaj@gmail.com>
19 lines
384 B
CSS
19 lines
384 B
CSS
/* Light theme setting */
|
|
.light {
|
|
--accent: #9a0000;
|
|
--green: #00a229;
|
|
--text: black;
|
|
--foreground: #f5f5f5;
|
|
--background: #ddd;
|
|
--outside: #ececec;
|
|
--post: #eee;
|
|
--panel-border: 1px solid #ccc;
|
|
--highlighted: white;
|
|
--visited: #555;
|
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
html:has(> .light) {
|
|
/* Hint color theme to browser for scrollbar */
|
|
color-scheme: light;
|
|
} |