mirror of https://gitlab.com/tildes/tildes.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
// Color palette is Zeno Rocha's "Dracula" (https://draculatheme.com/)
|
|
|
|
$background: #282a36;
|
|
$background-alt: #44475a;
|
|
$foreground: #f8f8f2;
|
|
$foreground-alt: #6272a4;
|
|
|
|
$cyan: #8be9fd;
|
|
$green: #50fa7b;
|
|
$orange: #ffb86c;
|
|
$pink: #ff79c6;
|
|
$purple: #bd93f9;
|
|
$red: #ff5555;
|
|
$yellow: #f1fa8c;
|
|
|
|
$theme-dracula: (
|
|
"alert": $orange,
|
|
"background-primary": $background,
|
|
"background-secondary": $background-alt,
|
|
"background-input": darken($background, 10%),
|
|
"border": $foreground-alt,
|
|
"comment-label-exemplary": $cyan,
|
|
"comment-label-joke": $green,
|
|
"comment-label-noise": $yellow,
|
|
"comment-label-offtopic": $pink,
|
|
"comment-label-malice": $red,
|
|
"error": $red,
|
|
"foreground-primary": $foreground,
|
|
"foreground-secondary": $foreground-alt,
|
|
"foreground-highlight": $foreground,
|
|
"link": $cyan,
|
|
"link-visited": $purple,
|
|
"stripe-mine": $purple,
|
|
"stripe-target": $yellow,
|
|
"syntax-builtin": $cyan,
|
|
"syntax-comment": $foreground-alt,
|
|
"syntax-constant": $red,
|
|
"syntax-keyword": $pink,
|
|
"syntax-literal": $purple,
|
|
"syntax-string": $yellow,
|
|
"topic-tag-nsfw": $red,
|
|
"topic-tag-spoiler": $yellow,
|
|
"warning": $yellow,
|
|
);
|
|
|
|
body.theme-dracula {
|
|
@include use-theme($theme-dracula);
|
|
}
|