Website/db/app/core/theme/darkTheme.ts
Mangiang 959c5fb0a6
Some checks failed
continuous-integration/drone/push Build is failing
fix: Fix theme handling
2021-12-19 12:51:52 -05:00

21 lines
555 B
TypeScript

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