asynqmon/ui/src/theme.tsx

20 lines
456 B
TypeScript
Raw Normal View History

2021-01-13 07:55:56 +08:00
import { createMuiTheme, Theme } from "@material-ui/core/styles";
2020-11-24 22:54:00 +08:00
2021-01-13 07:55:56 +08:00
export function makeTheme(isDarkTheme: boolean): Theme {
return createMuiTheme({
// Got color palette from https://htmlcolors.com/palette/31/stripe
palette: {
primary: {
main: "#4379FF",
},
secondary: {
main: "#97FBD1",
},
background: {
default: "#f5f7f9",
},
type: isDarkTheme ? "dark" : "light",
2020-11-24 22:54:00 +08:00
},
2021-01-13 07:55:56 +08:00
});
}