2024-07-02 21:32:39 +02:00
|
|
|
@import "themes/base/light";
|
2024-04-30 20:38:28 +02:00
|
|
|
|
2024-07-02 21:32:39 +02:00
|
|
|
$background-color: #f7f7f7;
|
2024-05-03 20:08:52 +02:00
|
|
|
$primary-color: #4b9ad3;
|
|
|
|
$secondary-color: #62a7d9;
|
2024-04-30 20:38:28 +02:00
|
|
|
|
|
|
|
:root {
|
2024-05-20 21:25:43 +02:00
|
|
|
/* Main colors */
|
2024-04-30 20:38:28 +02:00
|
|
|
--background-color: $background-color;
|
2024-05-03 20:08:52 +02:00
|
|
|
--text-light-color: $background-color;
|
2024-04-30 20:38:28 +02:00
|
|
|
|
2024-05-20 21:25:43 +02:00
|
|
|
/* Link colors */
|
2024-04-30 20:38:28 +02:00
|
|
|
--link-color: hsl(from $primary-color h calc(s + 25) calc(l - 25));
|
|
|
|
|
2024-05-20 21:25:43 +02:00
|
|
|
/* Primary color (block backgrounds and such) */
|
2024-04-30 20:38:28 +02:00
|
|
|
--primary-color: $primary-color;
|
2024-05-03 20:08:52 +02:00
|
|
|
--primary-border-color: hsl(from $primary-color h calc(s + 5) calc(l - 5));
|
|
|
|
--primary-muted-color: hsl(from $primary-color h calc(s + 7) calc(l + 20));
|
|
|
|
--primary-dark-color: hsl(from $primary-color h calc(s + 20) calc(l + 35));
|
2024-05-01 00:10:05 +02:00
|
|
|
--primary-link-color: var(--link-color); /* for consistency */
|
2024-04-30 20:38:28 +02:00
|
|
|
|
2024-05-20 21:25:43 +02:00
|
|
|
/* Secondary color (most buttons) */
|
2024-04-30 20:38:28 +02:00
|
|
|
--secondary-color: $secondary-color;
|
|
|
|
--secondary-border-color: hsl(from $secondary-color h s calc(l - 45));
|
2024-05-03 20:08:52 +02:00
|
|
|
--secondary-muted-color: hsl(from $secondary-color h calc(s + 5) calc(l + 18));
|
|
|
|
--secondary-dark-color: hsl(from $secondary-color h calc(s - 5) calc(l + 25));
|
2024-04-30 20:38:28 +02:00
|
|
|
--secondary-link-color: hsl(from $secondary-color h s calc(l - 55));
|
|
|
|
}
|
2024-05-03 20:08:52 +02:00
|
|
|
|
2024-07-02 21:32:39 +02:00
|
|
|
nav.header__secondary {
|
2024-05-03 20:08:52 +02:00
|
|
|
/* Apparently people will put me on a cross if
|
|
|
|
I don't use Trixie colors, so here you go! */
|
2024-05-20 22:30:41 +02:00
|
|
|
background-color: #e2ebf2;
|
2024-05-03 20:08:52 +02:00
|
|
|
}
|
|
|
|
|
2024-07-02 21:32:39 +02:00
|
|
|
nav.header__secondary .header__link {
|
2024-05-03 20:08:52 +02:00
|
|
|
color: var(--text-color) !important;
|
|
|
|
}
|