13 lines
302 B
SCSS
13 lines
302 B
SCSS
// You can override SASS variables here. Below example of simple dark theme.
|
|
|
|
/*
|
|
$gray-100: rgba(255, 255, 255, 0.1);
|
|
$gray-200: rgba(255, 255, 255, 0.2);
|
|
|
|
$body-background: #343a40;
|
|
$body-font-color: #e9ecef;
|
|
|
|
$color-link: #84b2ff;
|
|
$color-visited-link: #b88dff;
|
|
$color-dark-link: $body-font-color;
|
|
*/
|