source: src/theme/options/contrast.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 687 bytes
Line 
1import { palette } from '../palette';
2import { customShadows } from '../custom-shadows';
3
4// ----------------------------------------------------------------------
5
6export function contrast(contrastBold: boolean, mode: 'light' | 'dark') {
7 const theme = {
8 ...(contrastBold &&
9 mode === 'light' && {
10 palette: {
11 background: {
12 default: palette(mode).grey[100],
13 },
14 },
15 }),
16 };
17
18 const components = {
19 ...(contrastBold && {
20 MuiCard: {
21 styleOverrides: {
22 root: {
23 boxShadow: customShadows(mode).z4,
24 },
25 },
26 },
27 }),
28 };
29
30 return {
31 theme,
32 components,
33 };
34}
Note: See TracBrowser for help on using the repository browser.