summaryrefslogtreecommitdiff
path: root/exampleSite/assets
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2019-10-03 15:07:38 +0200
committerAlex Shpak <alex-shpak@users.noreply.github.com>2019-10-03 15:07:56 +0200
commit3e3a3346e1ce6d5f8f636189aeb8a7331c623429 (patch)
tree43f8127dc85df5ade2d62b20aa149fedc5852fe6 /exampleSite/assets
parent77255304f3d155c7ba0dc1fdf71ad4185fa2f91c (diff)
#59, Allow customize SASS vars, add example of dark theme
Diffstat (limited to 'exampleSite/assets')
-rw-r--r--exampleSite/assets/_custom.scss1
-rw-r--r--exampleSite/assets/_variables.scss13
2 files changed, 14 insertions, 0 deletions
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;
+*/