mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-10-23 06:46:11 +08:00
Initial commit
This commit is contained in:
18
ui/src/theme.tsx
Normal file
18
ui/src/theme.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
Reference in New Issue
Block a user