From 6afc9827215908edc2e53708ee748a05e3bab25e Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Wed, 3 Jan 2024 00:34:42 -0500 Subject: [PATCH] Separate CSS theme settings --- style/main.scss | 9 +++++++-- style/theme.scss | 5 +++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 style/theme.scss diff --git a/style/main.scss b/style/main.scss index e4538e1..0906ab0 100644 --- a/style/main.scss +++ b/style/main.scss @@ -1,4 +1,9 @@ +@import 'theme.scss'; + body { font-family: sans-serif; - text-align: center; -} \ No newline at end of file + background-color: $background-color; + color: $text-controls-color; + margin: 0; + padding: 0; +} diff --git a/style/theme.scss b/style/theme.scss new file mode 100644 index 0000000..2d35d94 --- /dev/null +++ b/style/theme.scss @@ -0,0 +1,5 @@ +$background-color: #030303; +$accent-color: #4032a8; +$text-controls-color: #e0e0e0; +$controls-hover-color: #c0c0c0; +$controls-click-color: #909090;