Skip to content

Commit 5a8ff6f

Browse files
committed
Fix: Themed Color for Universal Filter
Signed-off-by: vr-varad <varadgupta21@gmail.com>
1 parent 7c7d732 commit 5a8ff6f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/custom/UniversalFilter.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ export interface UniversalFilterProps {
3030
}
3131

3232
export const FilterHeader = styled('div')(({ theme }) => ({
33-
background: theme.palette.mode === 'light' ? lightModalGradient.header : darkModalGradient.header,
33+
background: theme.palette.surface.tint,
34+
color: '#eee',
3435
padding: '0.75rem 1rem',
3536
margin: '-1rem -1rem 1rem -1rem',
3637
display: 'flex',

0 commit comments

Comments
 (0)