458baf5f78
* Syntax highlighting mostly... Exists. * Add dependency to dockerfile * Handle non-existent languages better * Make the default a bit nicer * Improve highlighting. Clean up function * Add dark theme, add the comment scope to the allowed classes * update build env * Address review comments * Use find_syntax_by_token which produces the desired behavior * Change flat_map into flatten (commit cargo.lock)
38 lines
862 B
SCSS
38 lines
862 B
SCSS
/* Color Scheme */
|
|
$gray: #F3F3F3;
|
|
$black: #242424;
|
|
$white: #F8F8F8;
|
|
$purple: #7765E3;
|
|
$lightpurple: #c2bbee;
|
|
$red: #E92F2F;
|
|
$yellow: #ffe347;
|
|
$green: #23f0c7;
|
|
|
|
$background: $white;
|
|
$form-input-background: white;
|
|
$form-input-border: $black;
|
|
$text-color: $black;
|
|
$primary: $purple;
|
|
$primary-text-color: $white; // text color on primary background (buttons for instance)
|
|
$success-color: $green;
|
|
|
|
/* Dimensions */
|
|
|
|
$article-width: 70ch;
|
|
$horizontal-margin: 20%;
|
|
$margin: 0 $horizontal-margin;
|
|
|
|
/* Fonts */
|
|
|
|
$route159: "Route159", serif;
|
|
$playfair: "Playfair Display", serif;
|
|
$lora: "Lora", serif;
|
|
|
|
//Code Highlighting
|
|
$code-keyword-color: #45244a;
|
|
$code-source-color: #4c588c;
|
|
$code-constant-color: scale-color(magenta,$lightness:-5%);
|
|
$code-operator-color: scale-color($code-source-color,$lightness:-5%);
|
|
$code-string-color: #8a571c;
|
|
$code-comment-color: #1c4c8a;
|