Website/db/app/core/theme/darkTheme.ts

19 lines
497 B
TypeScript
Raw Normal View History

2021-12-18 22:34:07 -05:00
import {ThemeMode} from '../state/ThemeMode';
import {common, grey, lightBlue, yellow} from '@mui/material/colors';
import createPalette from "@mui/material/styles/createPalette";
export const darkPalette = createPalette({
mode: ThemeMode.DARK_MODE,
background: {
default: grey[900],
paper: '#121212'
},
text: {
primary: common.white,
secondary: '#8894a2',
disabled: lightBlue[100]
},
action: {
hover: yellow[700]
},
});