Skip to content

Commit

Permalink
add background-color
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoglvm committed Jan 20, 2024
1 parent 0ac580f commit 77cbb0e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
:root {
--text-color: white;
--bg-url: url(./assets/bg-dark.jpg);
--bg-color: rgb(22, 22, 24);
--stroke-color: rgba(255, 255, 255, 0.5);
--surface-color: rgba(255, 255, 255, 0.05);
--surface-color-hover: rgba(0, 0, 0, 0.02);
Expand All @@ -17,6 +18,7 @@
.light {
--text-color: black;
--bg-url: url(./assets/bg-light.jpg);
--bg-color: rgb(239, 235, 239);
--stroke-color: rgba(0, 0, 0, 0.5);
--surface-color: rgba(0, 0, 0, 0.05);
--surface-color-hover: rgba(0, 0, 0, 0.02);
Expand All @@ -26,8 +28,8 @@

body {
background: var(--bg-url) no-repeat top center/cover;
background-color: var(--bg-color);
min-height: 100vh;
overscroll-behavior: none;
}

body * {
Expand Down

0 comments on commit 77cbb0e

Please sign in to comment.