From 2b9b368d976f2862762f49a138c81c2933ae4f3d Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 31 Aug 2025 09:27:49 +0200 Subject: [PATCH] Feature/restore colors of various components (#5442) Restore colors of various components * checkbox * form field * slider * stepper --- apps/client/src/styles/theme.scss | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/apps/client/src/styles/theme.scss b/apps/client/src/styles/theme.scss index 0cae8fd22..f4105d15f 100644 --- a/apps/client/src/styles/theme.scss +++ b/apps/client/src/styles/theme.scss @@ -283,6 +283,12 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); ) ); + @include mat.checkbox-overrides( + ( + selected-icon-color: var(--gf-theme-primary-500) + ) + ); + @include mat.datepicker-overrides( ( calendar-container-elevation-shadow: var( @@ -308,6 +314,27 @@ $_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); ) ); + @include mat.form-field-overrides( + ( + outlined-focus-label-text-color: var(--gf-theme-primary-500), + outlined-focus-outline-color: var(--gf-theme-primary-500) + ) + ); + + @include mat.slider-overrides( + ( + active-track-color: var(--gf-theme-primary-500), + focus-handle-color: var(--gf-theme-primary-500), + handle-color: var(--gf-theme-primary-500) + ) + ); + + @include mat.stepper-overrides( + ( + header-selected-state-icon-background-color: var(--gf-theme-primary-500) + ) + ); + @include mat.tabs-overrides( ( active-focus-label-text-color: var(--gf-theme-primary-500),