site/src/res/scss/_themes.scss

68 lines
1.3 KiB
SCSS
Raw Normal View History

// theme-default.scss
/* ============================================================================
DEFAULT THEME
-------------------------------------------------------------------------------
This is the default theme for my website, which uses the prefer-color-scheme
query to provide the appropriate styles for light mode or dark mode. The other
themes can be selected with a dropdown which is only shown when JavaScript is
enabled.
============================================================================ */
@use "modules/include-media" as *;
:root {
color-scheme: light dark;
}
.theme-default {
@media (prefers-color-scheme: light) {
2024-06-27 03:09:20 -04:00
background: #ddbed4;
color: #150218;
a {
color: #08659b;
}
.site-header {
2024-06-27 03:09:20 -04:00
background: #f9eefc;
}
.site-main {
2024-06-27 03:09:20 -04:00
background: #f9eefc;
}
.site-navigation {
2024-06-27 03:09:20 -04:00
background: #f9eefc;
}
.site-footer {
2024-06-27 03:09:20 -04:00
background: #f9eefc;
}
}
@media (prefers-color-scheme: dark) {
2024-06-27 03:09:20 -04:00
background: #503047;
color: #f9eefc;
a {
color: #20a4f3;
}
.site-header {
2024-06-27 03:09:20 -04:00
background: #261722;
}
.site-main {
2024-06-27 03:09:20 -04:00
background: #261722;
}
.site-navigation {
2024-06-27 03:09:20 -04:00
background: #261722;
}
.site-footer {
2024-06-27 03:09:20 -04:00
background: #261722;
}
}
}