mirror of
https://github.com/mastodon/mastodon.git
synced 2025-10-20 16:01:07 +00:00
15 lines
520 B
SCSS
15 lines
520 B
SCSS
@use '../mastodon/functions' as *;
|
|
|
|
$ui-base-color: hsl(240deg, 16%, 19%) !default;
|
|
$ui-primary-color: hsl(240deg, 29%, 70%) !default;
|
|
$ui-secondary-color: hsl(255deg, 25%, 88%) !default;
|
|
$ui-highlight-color: hsl(240deg, 100%, 69%) !default;
|
|
|
|
@use '../mastodon/variables' with (
|
|
$highlight-text-color: lighten($ui-highlight-color, 10%),
|
|
$action-button-color: lighten($ui-base-color, 50%),
|
|
$inverted-text-color: #000,
|
|
$lighter-text-color: darken($ui-base-color, 6%),
|
|
$light-text-color: hsl(240deg, 29%, 70%)
|
|
);
|