asynqmon/ui/src/theme.tsx
2020-11-24 21:38:55 -08:00

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;