2024-07-02 21:32:39 +02:00
|
|
|
@import "themes/base/dark";
|
2024-04-30 12:16:09 +02:00
|
|
|
|
2024-07-02 21:32:39 +02:00
|
|
|
$background-color: #0f161e;
|
2024-05-03 20:08:52 +02:00
|
|
|
$primary-color: #284371;
|
|
|
|
$secondary-color: #546c99;
|
2024-04-30 12:16:09 +02:00
|
|
|
|
|
|
|
:root {
|
2024-05-20 21:25:43 +02:00
|
|
|
/* Main colors */
|
2024-04-30 12:16:09 +02:00
|
|
|
--background-color: $background-color;
|
|
|
|
|
2024-05-20 21:25:43 +02:00
|
|
|
/* Link colors */
|
2024-05-03 20:08:52 +02:00
|
|
|
--link-color: hsl(from $primary-color h calc(s + 10) calc(l + 40));
|
2024-04-30 12:16:09 +02:00
|
|
|
|
2024-05-20 21:25:43 +02:00
|
|
|
/* Primary color (block backgrounds and such) */
|
2024-04-30 12:16:09 +02:00
|
|
|
--primary-color: $primary-color;
|
2024-05-03 20:08:52 +02:00
|
|
|
--primary-border-color: hsl(from $primary-color h calc(s - 20) calc(l + 5));
|
2024-04-30 12:16:09 +02:00
|
|
|
--primary-muted-color: hsl(from $primary-color h calc(s - 10) calc(l - 10));
|
2024-05-03 20:08:52 +02:00
|
|
|
--primary-dark-color: hsl(from $primary-color h calc(s - 15) calc(l - 15));
|
2024-05-01 00:10:05 +02:00
|
|
|
--primary-link-color: var(--link-color); /* for consistency */
|
2024-04-30 12:16:09 +02:00
|
|
|
|
2024-05-20 21:25:43 +02:00
|
|
|
/* Secondary color (most buttons) */
|
2024-04-30 12:16:09 +02:00
|
|
|
--secondary-color: $secondary-color;
|
2024-05-03 20:08:52 +02:00
|
|
|
--secondary-border-color: hsl(from $secondary-color h s calc(l + 5));
|
|
|
|
--secondary-muted-color: hsl(from $secondary-color h s calc(l - 17));
|
|
|
|
--secondary-dark-color: hsl(from $secondary-color h calc(s - 5) calc(l - 25));
|
2024-05-03 22:59:29 +02:00
|
|
|
--secondary-link-color: hsl(from $secondary-color h s calc(l + 40));
|
2024-04-30 12:16:09 +02:00
|
|
|
}
|