#59, Allow customize SASS vars, add example of dark theme

This commit is contained in:
Alex Shpak
2019-10-03 15:07:38 +02:00
parent 77255304f3
commit 3e3a3346e1
7 changed files with 47 additions and 41 deletions
+1
View File
@@ -1 +1,2 @@
@import "variables";
// You can add custom styles here.
+13
View File
@@ -0,0 +1,13 @@
// 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;
*/