2024-09-19 03:39:32 +10:00
|
|
|
@use 'sass:color';
|
|
|
|
|
2018-05-26 02:36:26 +10:00
|
|
|
// Dependent colors
|
|
|
|
$black: #000000;
|
|
|
|
$white: #ffffff;
|
|
|
|
|
|
|
|
$classic-base-color: #282c37;
|
2018-08-11 00:38:26 +10:00
|
|
|
$classic-primary-color: #bdacbb;
|
|
|
|
$classic-secondary-color: #e0e0d8;
|
2024-09-24 20:42:20 +10:00
|
|
|
$classic-highlight-color: #2c7130;
|
2018-05-26 02:36:26 +10:00
|
|
|
|
2024-09-24 20:42:20 +10:00
|
|
|
$blurple-600: #3b953f; // Deeper green
|
2024-09-24 21:18:10 +10:00
|
|
|
$blurple-500: #1dac1b; // Lighter than that
|
2024-09-24 20:59:46 +10:00
|
|
|
$blurple-300: #94e47c; // Urgh blurple is the worst
|
2023-07-03 19:32:31 +10:00
|
|
|
$grey-600: #4e4c5a; // Trout
|
|
|
|
$grey-100: #dadaf3; // Topaz
|
|
|
|
|
2018-05-26 02:36:26 +10:00
|
|
|
// Differences
|
2024-08-21 01:56:44 +10:00
|
|
|
$success-green: lighten(hsl(138deg, 32%, 35%), 8%);
|
2018-05-26 18:53:44 +10:00
|
|
|
|
|
|
|
$base-overlay-background: $white !default;
|
|
|
|
$valid-value-color: $success-green !default;
|
2018-05-26 02:36:26 +10:00
|
|
|
|
|
|
|
$ui-base-color: $classic-secondary-color !default;
|
2019-11-25 22:36:25 +11:00
|
|
|
$ui-base-lighter-color: #6abf69;
|
2018-08-11 00:38:26 +10:00
|
|
|
$ui-primary-color: #c3cec3;
|
2018-05-26 02:36:26 +10:00
|
|
|
$ui-secondary-color: $classic-base-color !default;
|
2022-06-19 16:18:08 +10:00
|
|
|
$ui-highlight-color: $classic-highlight-color !default;
|
2018-05-26 02:36:26 +10:00
|
|
|
|
2023-07-03 19:32:31 +10:00
|
|
|
$ui-button-secondary-color: $grey-600 !default;
|
|
|
|
$ui-button-secondary-border-color: $grey-600 !default;
|
|
|
|
$ui-button-secondary-focus-color: $white !default;
|
|
|
|
|
|
|
|
$ui-button-tertiary-color: $blurple-500 !default;
|
|
|
|
$ui-button-tertiary-border-color: $blurple-500 !default;
|
2018-05-26 02:36:26 +10:00
|
|
|
|
|
|
|
$primary-text-color: $black !default;
|
|
|
|
$darker-text-color: $classic-base-color !default;
|
2022-06-19 16:18:08 +10:00
|
|
|
$highlight-text-color: darken($ui-highlight-color, 8%) !default;
|
2018-08-11 00:38:26 +10:00
|
|
|
$dark-text-color: #5e5066;
|
|
|
|
$action-button-color: #495542;
|
2018-05-26 02:36:26 +10:00
|
|
|
|
|
|
|
$inverted-text-color: $black !default;
|
|
|
|
$lighter-text-color: $classic-base-color !default;
|
2018-08-11 00:38:26 +10:00
|
|
|
$light-text-color: #7b807b;
|
2018-05-26 02:36:26 +10:00
|
|
|
|
2022-06-02 03:22:35 +10:00
|
|
|
// Newly added colors
|
2018-05-26 18:53:44 +10:00
|
|
|
$account-background-color: $white !default;
|
2018-05-26 02:36:26 +10:00
|
|
|
|
2022-06-02 03:22:35 +10:00
|
|
|
// Invert darkened and lightened colors
|
2018-05-26 02:36:26 +10:00
|
|
|
@function darken($color, $amount) {
|
2024-09-19 03:39:32 +10:00
|
|
|
@return hsl(
|
|
|
|
hue($color),
|
|
|
|
color.channel($color, 'saturation', $space: hsl),
|
|
|
|
color.channel($color, 'lightness', $space: hsl) + $amount
|
|
|
|
);
|
2018-05-26 02:36:26 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
@function lighten($color, $amount) {
|
2024-09-19 03:39:32 +10:00
|
|
|
@return hsl(
|
|
|
|
hue($color),
|
|
|
|
color.channel($color, 'saturation', $space: hsl),
|
|
|
|
color.channel($color, 'lightness', $space: hsl) - $amount
|
|
|
|
);
|
2018-05-26 02:36:26 +10:00
|
|
|
}
|
2020-06-09 18:28:23 +10:00
|
|
|
|
|
|
|
$emojis-requiring-inversion: 'chains';
|
2024-01-26 02:41:31 +11:00
|
|
|
|
2024-06-26 07:57:22 +10:00
|
|
|
body {
|
2024-08-21 01:56:44 +10:00
|
|
|
--dropdown-border-color: hsl(240deg, 25%, 88%);
|
2024-01-26 02:41:31 +11:00
|
|
|
--dropdown-background-color: #fff;
|
2024-08-21 01:56:44 +10:00
|
|
|
--modal-border-color: hsl(240deg, 25%, 88%);
|
2024-06-27 05:33:38 +10:00
|
|
|
--modal-background-color: var(--background-color-tint);
|
2024-08-21 01:56:44 +10:00
|
|
|
--background-border-color: hsl(240deg, 25%, 88%);
|
2024-03-12 20:51:30 +11:00
|
|
|
--background-color: #fff;
|
2024-06-26 07:57:22 +10:00
|
|
|
--background-color-tint: rgba(255, 255, 255, 80%);
|
2024-03-12 20:51:30 +11:00
|
|
|
--background-filter: blur(10px);
|
2024-08-20 08:11:58 +10:00
|
|
|
--on-surface-color: #{transparentize($ui-base-color, 0.65)};
|
2024-01-26 02:41:31 +11:00
|
|
|
}
|