Skip to content

Commit

Permalink
Make the colour on click less garrish in dark mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
samwho committed Apr 20, 2024
1 parent 7fc03fb commit 8e8d26e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion symbols.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
--main-bg-color: #1F1F1FFF;
--main-fg-color: #F0F0F0FF;
--border-color: #666666;
--clicked-color: rgb(15, 85, 21);
}
}

Expand All @@ -11,6 +12,7 @@
--main-bg-color: #F0F0F0FF;
--main-fg-color: #1F1F1FFF;
--border-color: #666666;
--clicked-color: #B1E8B6FF;
}
}

Expand Down Expand Up @@ -107,5 +109,5 @@ body {

.symbol-clicked {
font-size: 2rem;
background-color: #B1E8B6FF;
background-color: var(--clicked-color);
}

0 comments on commit 8e8d26e

Please sign in to comment.