2024-06-24 00:01:58 -04:00
|
|
|
// 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;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-header {
|
2024-06-27 03:09:20 -04:00
|
|
|
background: #f9eefc;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-main {
|
2024-06-27 03:09:20 -04:00
|
|
|
background: #f9eefc;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-navigation {
|
2024-06-27 03:09:20 -04:00
|
|
|
background: #f9eefc;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-footer {
|
2024-06-27 03:09:20 -04:00
|
|
|
background: #f9eefc;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
2024-06-27 03:09:20 -04:00
|
|
|
background: #503047;
|
|
|
|
color: #f9eefc;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #20a4f3;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-header {
|
2024-06-27 03:09:20 -04:00
|
|
|
background: #261722;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-main {
|
2024-06-27 03:09:20 -04:00
|
|
|
background: #261722;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-navigation {
|
2024-06-27 03:09:20 -04:00
|
|
|
background: #261722;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-footer {
|
2024-06-27 03:09:20 -04:00
|
|
|
background: #261722;
|
2024-06-24 00:01:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|