From 642f076e53ac86f83d1e0bd1065bd0bc9a6404bf Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sat, 9 May 2026 12:07:34 +0700 Subject: [PATCH] feat(client): implement mat.theme --- apps/client/src/styles/theme.scss | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/client/src/styles/theme.scss b/apps/client/src/styles/theme.scss index 296270e7f..87a7d1950 100644 --- a/apps/client/src/styles/theme.scss +++ b/apps/client/src/styles/theme.scss @@ -150,7 +150,7 @@ $gf-typography: ( ); .theme-light { - $gf-theme-default: mat.define-theme( + @include mat.theme( ( color: ( primary: $_primary, @@ -164,8 +164,6 @@ $gf-typography: ( ) ); - @include mat.all-component-themes($gf-theme-default); - @include mat.autocomplete-overrides( ( background-color: var(--light-background) @@ -233,7 +231,7 @@ $gf-typography: ( } .theme-dark { - $gf-theme-dark: mat.define-theme( + @include mat.theme( ( color: ( primary: $_primary, @@ -247,8 +245,6 @@ $gf-typography: ( ) ); - @include mat.all-component-themes($gf-theme-dark); - @include mat.button-overrides( ( outlined-label-text-color: var(--light-primary-text),