mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-05 12:21:39 +00:00
Migrate to Mantine v8 and Design Changes (#961)
* mantine v8 migration * various design changes and improvements
This commit is contained in:
parent
bea55d48a8
commit
c1330d92b2
473 changed files with 12469 additions and 11607 deletions
33
src/shared/themes/default-light/default-light.ts
Normal file
33
src/shared/themes/default-light/default-light.ts
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
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',
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue