diff options
| author | Lizzy Hunt <lizzy.hunt@usu.edu> | 2024-03-26 16:00:05 -0600 |
|---|---|---|
| committer | Lizzy Hunt <lizzy.hunt@usu.edu> | 2024-03-26 16:00:05 -0600 |
| commit | fe22956d5dbdeb2b80a9e56b46abe2be9f2bfcdb (patch) | |
| tree | 6111f03c2da4eb42aff03cda72157a8961da27e8 /static/css/colors.css | |
| parent | 27aab70386c68f3a0f22c52e72b91cf16b289100 (diff) | |
| download | hatecomputers.club-fe22956d5dbdeb2b80a9e56b46abe2be9f2bfcdb.tar.gz hatecomputers.club-fe22956d5dbdeb2b80a9e56b46abe2be9f2bfcdb.zip | |
initial commit
Diffstat (limited to 'static/css/colors.css')
| -rw-r--r-- | static/css/colors.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/static/css/colors.css b/static/css/colors.css new file mode 100644 index 0000000..159a142 --- /dev/null +++ b/static/css/colors.css @@ -0,0 +1,13 @@ +:root { + --background-color: #f4e8e9; + --text-color: #333; + --link-color: #d291bc; + --container-bg: #fff7f8; +} + +[data-theme="DARK"] { + --background-color: #333; + --text-color: #f4e8e9; + --link-color: #b86b77; + --container-bg: #424242; +} |
