From 82816d8915fbc1fadeda0eaf8e396b1c67cc65ab Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Thu, 2 Jan 2025 00:41:50 -0700 Subject: [PATCH] Update CSS to use the variables it should be using --- Apps/HeroSkillsCardV1/style.css | 5 ++--- Apps/themes/dark.css | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Apps/HeroSkillsCardV1/style.css b/Apps/HeroSkillsCardV1/style.css index c5f77be..e4c935d 100644 --- a/Apps/HeroSkillsCardV1/style.css +++ b/Apps/HeroSkillsCardV1/style.css @@ -104,13 +104,12 @@ align-items: center; background: var(--section-header-background); color: var(--section-header-text); - --input-background: black; - --input-text: white; + --input-background: var(--base-background); + --input-text: var(--base-text); .input { margin: 2px; border-radius: 999px; - /* border-bottom: none; */ text-align: center; } } diff --git a/Apps/themes/dark.css b/Apps/themes/dark.css index 8a9feff..9c0c05d 100644 --- a/Apps/themes/dark.css +++ b/Apps/themes/dark.css @@ -4,12 +4,12 @@ --accent-2: #04262a; --accent-3: #4fb258; - --section-header-text: white; - --section-header-background: var(--accent-1); - --base-text: white; --base-background: black; + --section-header-text: white; + --section-header-background: var(--accent-1); + --alt-row-text: white; --alt-row-background: var(--accent-2);