From 3e3a3346e1ce6d5f8f636189aeb8a7331c623429 Mon Sep 17 00:00:00 2001 From: Alex Shpak Date: Thu, 3 Oct 2019 15:07:38 +0200 Subject: #59, Allow customize SASS vars, add example of dark theme --- exampleSite/assets/_custom.scss | 1 + exampleSite/assets/_variables.scss | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 exampleSite/assets/_variables.scss (limited to 'exampleSite/assets') diff --git a/exampleSite/assets/_custom.scss b/exampleSite/assets/_custom.scss index 9132fb6..cdb82f7 100644 --- a/exampleSite/assets/_custom.scss +++ b/exampleSite/assets/_custom.scss @@ -1 +1,2 @@ @import "variables"; +// You can add custom styles here. 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; +*/ -- cgit v1.2.3