2019-12-16 22:28:48 +01:00
|
|
|
/* Color Scheme */
|
2020-06-24 15:48:04 +02:00
|
|
|
$gray: #f3f3f3;
|
2018-12-15 22:06:27 +01:00
|
|
|
$black: #242424;
|
2020-06-24 15:48:04 +02:00
|
|
|
$white: #f8f8f8;
|
|
|
|
$purple: #7765e3;
|
2019-03-13 21:54:48 +01:00
|
|
|
$lightpurple: #c2bbee;
|
2020-06-24 15:48:04 +02:00
|
|
|
$red: #e92f2f;
|
2019-04-30 12:04:25 +02:00
|
|
|
$yellow: #ffe347;
|
|
|
|
$green: #23f0c7;
|
2018-12-15 22:06:27 +01:00
|
|
|
|
2019-05-18 14:09:51 +02:00
|
|
|
$background: $white;
|
|
|
|
$form-input-background: white;
|
2019-08-21 00:42:04 +02:00
|
|
|
$form-input-border: $black;
|
|
|
|
$text-color: $black;
|
|
|
|
$primary: $purple;
|
|
|
|
$primary-text-color: $white; // text color on primary background (buttons for instance)
|
|
|
|
$success-color: $green;
|
2019-05-18 14:09:51 +02:00
|
|
|
|
2019-12-16 22:28:48 +01:00
|
|
|
/* Dimensions */
|
2019-05-18 14:09:51 +02:00
|
|
|
|
|
|
|
$article-width: 70ch;
|
|
|
|
$horizontal-margin: 20%;
|
|
|
|
$margin: 0 $horizontal-margin;
|
|
|
|
|
2019-12-16 22:28:48 +01:00
|
|
|
/* Fonts */
|
2018-12-15 22:06:27 +01:00
|
|
|
|
2020-06-24 15:48:04 +02:00
|
|
|
$route159: "Shabnam", "Route159", serif;
|
|
|
|
$playfair: "Vazir", "Playfair Display", serif;
|
|
|
|
$lora: "Vazir", "Lora", serif;
|
2019-12-30 14:35:27 +01:00
|
|
|
|
|
|
|
//Code Highlighting
|
|
|
|
$code-keyword-color: #45244a;
|
|
|
|
$code-source-color: #4c588c;
|
2020-06-24 15:48:04 +02:00
|
|
|
$code-constant-color: scale-color(magenta, $lightness: -5%);
|
|
|
|
$code-operator-color: scale-color($code-source-color, $lightness: -5%);
|
2019-12-30 14:35:27 +01:00
|
|
|
$code-string-color: #8a571c;
|
|
|
|
$code-comment-color: #1c4c8a;
|