21 lines
536 B
TypeScript
21 lines
536 B
TypeScript
import {ThemeMode} from '../state/ThemeMode';
|
|
import {blue, common, grey} from "@mui/material/colors";
|
|
import {createTheme} from "@mui/material/styles";
|
|
|
|
export const lightPalette = createTheme({
|
|
palette: {
|
|
mode: ThemeMode.LIGHT_MODE,
|
|
background: {
|
|
default: grey[100],
|
|
paper: grey[300]
|
|
},
|
|
text: {
|
|
primary: common.black,
|
|
secondary: blue[500],
|
|
disabled: grey[600]
|
|
},
|
|
action: {
|
|
hover: blue[500],
|
|
}
|
|
}
|
|
}); |