summaryrefslogtreecommitdiff
path: root/exampleSite/assets
diff options
context:
space:
mode:
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;
+*/