From e9035d93f66d91439aca47f7ae5bb9df9790c337 Mon Sep 17 00:00:00 2001 From: igorkorenfeld Date: Mon, 5 Dec 2022 15:23:16 -0500 Subject: [PATCH] Add setting for state colors --- .../assets/sass/_theme/_uswds-theme.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/registrar/assets/sass/_theme/_uswds-theme.scss b/src/registrar/assets/sass/_theme/_uswds-theme.scss index 56424f6da..0052880a6 100644 --- a/src/registrar/assets/sass/_theme/_uswds-theme.scss +++ b/src/registrar/assets/sass/_theme/_uswds-theme.scss @@ -101,6 +101,24 @@ in the form $setting: value, // $theme-color-base-lightest: $dhs-gray-10, // $theme-global-paragraph-styles: true, + /*--------------------------- + ## Error state + ----------------------------*/ + $theme-color-error-darker: $dhs-red-70, + $theme-color-error-dark: $dhs-red-60, + $theme-color-error: $dhs-red, + $theme-color-error-light: $dhs-red-30, + $theme-color-error-lighter: $dhs-red-15, + + /*--------------------------- + ## Success state + ----------------------------*/ + $theme-color-success-darker: $dhs-green-70, + $theme-color-success-dark: $dhs-green-60, + $theme-color-success: $dhs-green, + $theme-color-success-light: $dhs-green-30, + $theme-color-success-lighter: $dhs-green-15, + /*--------------------------- # Input settings