init commit,
This commit is contained in:
34
03_source/frontend/src/theme/theme-overrides.ts
Normal file
34
03_source/frontend/src/theme/theme-overrides.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
import { createPaletteChannel } from 'minimal-shared/utils';
|
||||
|
||||
import type { ThemeOptions } from './types';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export const themeOverrides: ThemeOptions = {
|
||||
colorSchemes: {
|
||||
light: {
|
||||
palette: {
|
||||
primary: createPaletteChannel({
|
||||
lighter: '#E4DCFD',
|
||||
light: '#A996F8',
|
||||
main: '#6950E8',
|
||||
dark: '#3828A7',
|
||||
darker: '#180F6F',
|
||||
contrastText: '#FFFFFF',
|
||||
}),
|
||||
},
|
||||
},
|
||||
dark: {
|
||||
palette: {
|
||||
primary: createPaletteChannel({
|
||||
lighter: '#E4DCFD',
|
||||
light: '#A996F8',
|
||||
main: '#6950E8',
|
||||
dark: '#3828A7',
|
||||
darker: '#180F6F',
|
||||
contrastText: '#FFFFFF',
|
||||
}),
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user