summaryrefslogtreecommitdiff
path: root/buildscripts/libdeps/graph_visualizer_web_stack/src/theme.js
blob: ab7f568301cc05b91f7f85f11733fcb6aa860242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { green, red, grey } from "@material-ui/core/colors";
import { createMuiTheme } from "@material-ui/core/styles";

// A custom theme for this app
const theme = createMuiTheme({
  palette: {
    primary: {
      light: green[300],
      main: green[500],
      dark: green[700],
    },
    secondary: {
      light: grey[300],
      main: grey[500],
      dark: grey[800],
      darkAccent: "#4d4d4d",
    },
    mode: "dark",
  },
});

export default theme;