Separate CSS theme settings

This commit is contained in:
Ethan Girouard 2024-01-03 00:34:42 -05:00
parent 97304ba1a7
commit 6afc982721
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146
2 changed files with 12 additions and 2 deletions

View File

@ -1,4 +1,9 @@
@import 'theme.scss';
body {
font-family: sans-serif;
text-align: center;
background-color: $background-color;
color: $text-controls-color;
margin: 0;
padding: 0;
}

5
style/theme.scss Normal file
View File

@ -0,0 +1,5 @@
$background-color: #030303;
$accent-color: #4032a8;
$text-controls-color: #e0e0e0;
$controls-hover-color: #c0c0c0;
$controls-click-color: #909090;