Skip to content
Snippets Groups Projects
theme.ts 568 B
Newer Older
  • Learn to ignore specific revisions
  • import { createTheme } from '@material-ui/core'
    
    export const theme = createTheme({
      palette: {
        type: 'dark',
    
        primary: {
          '500': '#579eff',
        },
    
      },
      overrides: {
        MuiButton: {
          root: {
            height: 40,
          },
          sizeSmall: {
            height: 32,
          },
          sizeLarge: {
            height: 40,
          },
        },
    
        MuiLinearProgress: {
          determinate: {
            height: 6,
            borderRadius: 5,
            backgroundColor: 'transparent',
          },
          barColorPrimary: {
            backgroundColor: '#e3b82a',
          },
        },