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;