Better colors and styling
All checks were successful
Build / build (push) Successful in 5m29s

This commit is contained in:
2024-02-08 21:39:40 +01:00
parent 78e16a9851
commit 4fe838eb2a
5 changed files with 93 additions and 39 deletions

View File

@ -1,11 +1,11 @@
$col-white: #fff;
$col-black: #181818;
$col-black: #2e3440;
body {
margin: 0;
background-color: $col-white;
color: $col-black;
background-color: $col-black;
color: $col-white;
}
table {
@ -13,7 +13,7 @@ table {
}
.song {
padding: 2em;
padding: 1em 0 0 1em;
}
.title {
@ -40,7 +40,7 @@ table {
display: block;
height: 100%;
width: 2px;
background-color: $col-black;
background-color: $col-white;
}
}
@ -53,22 +53,22 @@ table {
.comment {
display: inline-block;
padding: .25em .5em;
background-color: #bbb;
color: $col-black;
background-color: #4c566a;
color: $col-white;
}
@media (prefers-color-scheme: dark) {
@media (prefers-color-scheme: light) {
body {
background-color: $col-black;
color: $col-white;
background-color: $col-white;
color: $col-black;
}
.chorus:before {
background-color: $col-white;
background-color: $col-black;
}
.comment {
background-color: #585858;
color: $col-white;
background-color: #d8dee9;
color: $col-black;
}
}