a6c84daa1a
* Theming - Custom CSS for blogs - Custom themes for instance - New dark theme - UI to choose your instance theme - Option to disable blog themes if you prefer to only have the instance theme - UI to choose a blog theme
20 lines
411 B
SCSS
20 lines
411 B
SCSS
@import '_variables';
|
|
|
|
// Color Scheme
|
|
$gray: #1a3854;
|
|
$black: #102e4a;
|
|
$white: #F8F8F8;
|
|
$purple: #7765E3;
|
|
$lightpurple: #c2bbee;
|
|
$red: #d16666;
|
|
$yellow: #ff934f;
|
|
$blue: #7f96ff;
|
|
|
|
$background: $black;
|
|
$form-input-background: $gray;
|
|
$form-input-border: $white;
|
|
$text-color: $white;
|
|
$primary: $purple;
|
|
$primary-text-color: $white; // text color on primary background (buttons for instance)
|
|
$success-color: $blue;
|