2022-05-21 13:41:31 +12:00
|
|
|
/* Light theme setting */
|
|
|
|
.light {
|
2024-10-13 04:42:15 +13:00
|
|
|
--accent: #bb2b3b;
|
2022-05-21 13:41:31 +12:00
|
|
|
--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);
|
2022-12-27 10:57:04 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
html:has(> .light) {
|
|
|
|
/* Hint color theme to browser for scrollbar */
|
|
|
|
color-scheme: light;
|
2022-05-21 13:41:31 +12:00
|
|
|
}
|