From 2f2bef393be574951585d07e9f2dca9d36e80f61 Mon Sep 17 00:00:00 2001 From: Kyle <41976328+ImKyle4815@users.noreply.github.com> Date: Wed, 14 Oct 2020 10:49:35 -0700 Subject: [PATCH] Update main.css --- data/styles/main.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/data/styles/main.css b/data/styles/main.css index b86880c4..768e2e83 100644 --- a/data/styles/main.css +++ b/data/styles/main.css @@ -50,6 +50,7 @@ --layer-background: none; --layer-background-filter: grayscale(100) brightness(0.5); --layer-background-selected: #1d1d1d; + --option-background: #888888; --interactable-unselected: #666666; --interactable-selected: #99ee99; --font-color: #efefef; @@ -269,6 +270,10 @@ input:not([type='checkbox']), textarea, button, select { position: relative; top: 0; } +option { + /* Whatever color you want */ + background: var(--option-background); +} /*Slightly lifts inputs upon hovering over them*/ input:not([type='checkbox']):hover, textarea:hover, button:hover, select:hover, select:focus { top: -0.1rem;