mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-03 03:11:40 +00:00
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
import { AppThemeConfiguration } from '/@/shared/themes/app-theme-types';
|
|
|
|
export const defaultLight: AppThemeConfiguration = {
|
|
app: {
|
|
'overlay-header':
|
|
'linear-gradient(rgb(255 255 255 / 50%) 0%, rgb(255 255 255 / 80%)), var(--theme-background-noise)',
|
|
'overlay-subheader':
|
|
'linear-gradient(180deg, rgba(255, 255, 255, 5%) 0%, var(--theme-colors-background)), var(--theme-background-noise)',
|
|
'scrollbar-handle-background': 'rgba(140, 140, 140, 30%)',
|
|
'scrollbar-handle-hover-background': 'rgba(140, 140, 140, 60%)',
|
|
'scrollbar-track-background': 'transparent',
|
|
},
|
|
colors: {
|
|
background: 'rgb(255, 255, 255)',
|
|
'background-alternate': 'rgb(245, 245, 245)',
|
|
black: 'rgb(0, 0, 0)',
|
|
foreground: 'rgb(25, 25, 25)',
|
|
'foreground-muted': 'rgb(80, 80, 80)',
|
|
'state-error': 'rgb(255, 59, 48)',
|
|
'state-info': 'rgb(0, 122, 255)',
|
|
'state-success': 'rgb(48, 209, 88)',
|
|
'state-warning': 'rgb(255, 214, 0)',
|
|
surface: 'rgb(245, 245, 245)',
|
|
'surface-foreground': 'rgb(0, 0, 0)',
|
|
white: 'rgb(255, 255, 255)',
|
|
},
|
|
mantineOverride: {
|
|
primaryShade: {
|
|
light: 4,
|
|
},
|
|
},
|
|
mode: 'light',
|
|
};
|