diff options
| author | Ariel Costas <94913521+arielcostas@users.noreply.github.com> | 2024-02-05 20:13:38 +0100 |
|---|---|---|
| committer | Ariel Costas <94913521+arielcostas@users.noreply.github.com> | 2024-02-05 20:13:38 +0100 |
| commit | 0608fd841ca954c171bf4f1db1078957ee22cde3 (patch) | |
| tree | 059a54338884d5dbbd6053388fbe885dedd691f9 /assets/css/_root.scss | |
| parent | 8ccc47294e213c44139d90e4971a6ae40ff4a74a (diff) | |
Implement dark mode via media query
Diffstat (limited to 'assets/css/_root.scss')
| -rw-r--r-- | assets/css/_root.scss | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/assets/css/_root.scss b/assets/css/_root.scss index 5932125..6354cba 100644 --- a/assets/css/_root.scss +++ b/assets/css/_root.scss @@ -8,11 +8,18 @@ line-height: 1.65; font-family: var(--font-body); + --header-background: #efefef; + --header-color: var(--accent-1); + + --body-background: #f5f5f5; + --body-color: #212121; + + --footer-background: #212121; + --footer-color: #ffffff; + --accent-1: hsl(152, 90%, 20%); --accent-2: hsl(152, 90%, 30%); --accent-3: hsl(152, 90%, 40%); - --accent-4: hsl(152, 90%, 50%); - --accent-5: hsl(152, 90%, 60%); - --accent-6: hsl(152, 90%, 70%); - --accent-7: hsl(152, 90%, 80%); + --accent-4: hsl(152, 90%, 60%); + --accent-5: hsl(152, 90%, 80%); }
\ No newline at end of file |
