aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.scss')
-rw-r--r--src/App.scss20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/App.scss b/src/App.scss
index 4955af6..489d354 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -21,17 +21,20 @@
font-family: 'Open Sans', sans-serif;
}
+$primaryAccentColor: #bd93f9;
+$backgroundColor: #282a36;
+$linkColor: $primaryAccentColor;
+$fgColor: #f8f8f2;
+
body {
margin: 0;
padding: 0;
- //background-color: #dfe0e8;
- background-color: #282a36;
- color: #f8f8f2;
+ background-color: $backgroundColor;
+ color: $fgColor;
}
main {
- //background-color: #FDFDFD;
- background-color: #282a36;
+ background-color: $backgroundColor;
width: 100%;
max-width: 1500px;
margin: 0 auto;
@@ -42,5 +45,10 @@ main {
hr {
border: none;
- border-top: 1px solid #bd93f9;
+ border-top: 1px solid $primaryAccentColor;
+}
+
+a {
+ color: $linkColor;
+ text-decoration: none;
}