14 lines
406 B
SCSS
14 lines
406 B
SCSS
$classic-base-color: #282c37; // Midnight Express
|
|
$classic-secondary-color: #d9e1e8; // Pattens Blue
|
|
|
|
@use '../mastodon/variables' with (
|
|
// Variables for defaults in UI
|
|
$simple-background-color: $classic-base-color,
|
|
|
|
// Tell UI to use selected colors
|
|
$ui-base-lighter-color: #969fbc,
|
|
|
|
// Lighter darkest
|
|
// For texts on inverted backgrounds
|
|
$inverted-text-color: $classic-secondary-color
|
|
);
|