asynqmon/ui/src/theme.tsx

19 lines
346 B
TypeScript
Raw Normal View History

2020-11-24 06:54:00 -08:00
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;