mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-01-31 17:10:11 +08:00
19 lines
346 B
TypeScript
19 lines
346 B
TypeScript
|
import { createMuiTheme } from "@material-ui/core/styles";
|
||
|
|
||
|
// Got color palette from https://htmlcolors.com/palette/31/stripe
|
||
|
const theme = createMuiTheme({
|
||
|
palette: {
|
||
|
primary: {
|
||
|
main: "#4379FF",
|
||
|
},
|
||
|
secondary: {
|
||
|
main: "#97FBD1",
|
||
|
},
|
||
|
background: {
|
||
|
default: "#f5f7f9",
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default theme;
|