• This project
    • Loading...
  • Sign in

2020-1-CloudComputing-E / E_Team_KhuBox

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • E_Team_KhuBox
  • khubox-front
  • src
  • theme
  • index.js
  • Woojin Lee's avatar
    Add react dashboard template · 817b41e3
    817b41e3
    Woojin Lee authored 2020-05-03 19:54:59 +0900
index.js 310 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { createMuiTheme } from '@material-ui/core';

import palette from './palette';
import typography from './typography';
import overrides from './overrides';

const theme = createMuiTheme({
  palette,
  typography,
  overrides,
  zIndex: {
    appBar: 1200,
    drawer: 1100
  }
});

export default theme;