diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-10-03 15:07:38 +0200 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-10-03 15:07:56 +0200 |
commit | 3e3a3346e1ce6d5f8f636189aeb8a7331c623429 (patch) | |
tree | 43f8127dc85df5ade2d62b20aa149fedc5852fe6 /exampleSite/assets/_variables.scss | |
parent | 77255304f3d155c7ba0dc1fdf71ad4185fa2f91c (diff) |
#59, Allow customize SASS vars, add example of dark theme
Diffstat (limited to 'exampleSite/assets/_variables.scss')
-rw-r--r-- | exampleSite/assets/_variables.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/exampleSite/assets/_variables.scss b/exampleSite/assets/_variables.scss new file mode 100644 index 0000000..ec7bff2 --- /dev/null +++ b/exampleSite/assets/_variables.scss @@ -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; +*/ |