From 1affeb75b6d4987314f4880ffc0e84d2bddf62f2 Mon Sep 17 00:00:00 2001 From: David Walsh Date: Tue, 22 Mar 2022 13:37:06 -0500 Subject: [PATCH] Dark Mode: Remove white style from radio button (#14082) Co-authored-by: George Marshall --- ui/components/ui/button-group/index.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/components/ui/button-group/index.scss b/ui/components/ui/button-group/index.scss index 1ec6e932e..bb77fc9f8 100644 --- a/ui/components/ui/button-group/index.scss +++ b/ui/components/ui/button-group/index.scss @@ -50,7 +50,7 @@ &--active { background: var(--color-primary-default); - color: white; + color: var(--color-primary-inverse); border: none; } @@ -67,7 +67,7 @@ .radio-button--active.radio-button--danger { border: 1px solid var(--color-error-default); - color: white; + color: var(--color-error-inverse); background: var(--color-error-default); } }