Skip to content

Commit d3e2486

Browse files
committed
Add more cusotmize variables
1 parent 6eb7ef4 commit d3e2486

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

modules/web/src/assets/themes/dark.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ $colors-dark: (
7070
slide-toggle-handle-color: #bdbdbd,
7171
hint-color: #b8b8b8b3,
7272
announcement-banner-text: #edeff0,
73+
tab-inactive-text: rgba(184, 184, 184, .6),
7374
);
7475
$colors-dark-palette: mat.$m2-blue-palette;
7576
$colors-dark-palette: map.merge(
@@ -192,11 +193,12 @@ $theme-dark: map.merge(
192193
--mat-card-outlined-container-color: #{map.get($background, card)};
193194
--mat-card-elevated-container-color: #{map.get($background, card)};
194195
--mat-card-filled-container-color: #{map.get($background, card)};
195-
196196
--mat-table-background-color: #{map.get($background, card)};
197+
--mat-table-row-item-label-text-color: #{map.get($foreground, text)};
198+
--mat-sort-arrow-color: #{map.get($foreground, secondary-text)};
199+
--mat-tab-inactive-label-text-color: #{map.get($colors-dark, tab-inactive-text)};
197200
--mat-stepper-container-color: #{map.get($background, card)};
198201
--mat-button-toggle-background-color: #{map.get($background, card)};
199-
200202
--mdc-dialog-container-color: #{map.get($background, dialog)};
201203

202204
// Paginator variables to fix background color issues

modules/web/src/assets/themes/light.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ $colors-light: (
6666
slide-toggle-handle-color: #fafafa,
6767
hint-color: #7e868f99,
6868
announcement-banner-text: #edeff0,
69+
tab-inactive-text: rgba(77, 85, 92, .6),
6970
);
7071
$colors-light-palette: mat.$m2-blue-palette;
7172
$colors-light-palette: map.merge(
@@ -189,11 +190,12 @@ $theme-light: map.merge(
189190
--mat-card-outlined-container-color: #{map.get($background, card)};
190191
--mat-card-elevated-container-color: #{map.get($background, card)};
191192
--mat-card-filled-container-color: #{map.get($background, card)};
192-
193193
--mat-table-background-color: #{map.get($background, card)};
194+
--mat-table-row-item-label-text-color: #{map.get($foreground, text)};
195+
--mat-sort-arrow-color: #{map.get($foreground, secondary-text)};
196+
--mat-tab-inactive-label-text-color: rgba(77, 85, 92, .6);
194197
--mat-stepper-container-color: #{map.get($background, card)};
195198
--mat-button-toggle-background-color: #{map.get($background, card)};
196-
197199
--mdc-dialog-container-color: #{map.get($background, dialog)};
198200

199201
// Paginator variables to fix background color issues

0 commit comments

Comments
 (0)