add new app themes

This commit is contained in:
jeffvli
2025-12-14 06:06:27 -08:00
parent 0f4534c34c
commit 69de9a98f0
32 changed files with 943 additions and 88 deletions
@@ -0,0 +1,33 @@
import { AppThemeConfiguration } from '/@/shared/themes/app-theme-types';
export const materialLight: AppThemeConfiguration = {
app: {
'overlay-header':
'linear-gradient(rgb(250 250 250 / 50%) 0%, rgb(250 250 250 / 80%)), var(--theme-background-noise)',
'overlay-subheader':
'linear-gradient(180deg, rgba(250, 250, 250, 5%) 0%, var(--theme-colors-background)), var(--theme-background-noise)',
'scrollbar-handle-background': 'rgba(33, 150, 243, 30%)',
'scrollbar-handle-hover-background': 'rgba(33, 150, 243, 60%)',
},
colors: {
background: 'rgb(250, 250, 250)',
'background-alternate': 'rgb(255, 255, 255)',
black: 'rgb(0, 0, 0)',
foreground: 'rgb(33, 33, 33)',
'foreground-muted': 'rgb(117, 117, 117)',
primary: 'rgb(33, 150, 243)',
'state-error': 'rgb(244, 67, 54)',
'state-info': 'rgb(33, 150, 243)',
'state-success': 'rgb(76, 175, 80)',
'state-warning': 'rgb(255, 152, 0)',
surface: 'rgb(255, 255, 255)',
'surface-foreground': 'rgb(33, 33, 33)',
white: 'rgb(255, 255, 255)',
},
mantineOverride: {
primaryShade: {
light: 4,
},
},
mode: 'light',
};