From debd1d22ba56894465036489393b11005f4537a5 Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Tue, 8 Nov 2022 17:52:43 -0800 Subject: [PATCH] fix styling --- index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 36bf024..0ee56e2 100644 --- a/index.html +++ b/index.html @@ -46,7 +46,8 @@ textarea { .sequencer-preview { flex: 1; - background-color: #d0cfcf; + background-color: var(--background-alt); + color: var(--text); border-radius: 6px; border-top-left-radius: 0px; border-bottom-left-radius: 0px; @@ -61,7 +62,8 @@ textarea { } .active { - background-color: #9b9b9b; + background-color: var(--selection); + color: var(--code); text-decoration: underline; }