@material-ui/core/colors#red TypeScript Examples

The following examples show how to use @material-ui/core/colors#red. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: theme.tsx    From logo-generator with MIT License 6 votes vote down vote up
theme = createMuiTheme({
	palette: {
		primary: {
			main: '#556cd6',
		},
		secondary: {
			main: '#19857b',
		},
		error: {
			main: red.A400,
		},
		background: {
			default: '#fff',
		},
	},
})
Example #2
Source File: theme.tsx    From frontend-clean-architecture with MIT License 6 votes vote down vote up
theme = createMuiTheme({
    palette: {
        primary: {
            main: blue.A400,
        },
        secondary: {
            main: red.A700,
        },
        error: {
            main: red.A400,
        },
        background: {
            default: grey[50],
        },
    },
})
Example #3
Source File: Articles.tsx    From casl-examples with MIT License 6 votes vote down vote up
useStyles = makeStyles(theme => createStyles({
  root: {
    maxWidth: 345,
  },
  media: {
    height: 0,
    paddingTop: '56.25%', // 16:9
  },
  expand: {
    transform: 'rotate(0deg)',
    marginLeft: 'auto',
    transition: theme.transitions.create('transform', {
      duration: theme.transitions.duration.shortest,
    }),
  },
  expandOpen: {
    transform: 'rotate(180deg)',
  },
  avatar: {
    backgroundColor: red[500],
  },
}))
Example #4
Source File: theme.tsx    From vhealth-gatsby with MIT License 6 votes vote down vote up
theme = createMuiTheme({
  typography: {
    subtitle1: {
      color: "#7D7987",
    },
  },
  palette: {
    type: "light",
    primary: {
      main: "#458FF6",
    },
    error: {
      main: red.A400,
    },
    background: {
      default: "#fff",
    },
    text: {
      primary: "#000",
      secondary: "#7D7987",
      disabled: "#CCC",
      hint: "#7D7987",
    },
  },
  shape: {
    borderRadius: 20,
  },
})
Example #5
Source File: theme.ts    From CrewLink with GNU General Public License v3.0 6 votes vote down vote up
theme = createMuiTheme({
	palette: {
		primary: {
			main: purple[300],
		},
		secondary: red,
		background: {
			default: '#27232a',
			paper: '#272727',
		},
		type: 'dark',
	},
	overrides: {
		MuiTooltip: {
			tooltip: {
				fontSize: 16,
			},
		},
	},
})
Example #6
Source File: ServerListItemSingle.tsx    From shadowsocks-electron with GNU General Public License v3.0 6 votes vote down vote up
useStyles = makeStyles((theme: Theme) =>
  createStyles({
    action: {
      "& > *": {
        marginLeft: theme.spacing(1)
      }
    },
    lighterPrimary: {
      color: theme.palette.primary.light
    },
    gradientDivider: {
      width: '50%',
      margin: 'auto',
      backgroundColor: 'transparent',
      height: '2px',
      backgroundImage: 'linear-gradient(to right, transparent, rgba(0, 0, 0, 0.12), transparent)'
    },
    deleteButton: {
      '&:hover': {
        color: red[600]
      }
    },
    listIcon: {
      minWidth: theme.spacing(6)
    }
  })
)
Example #7
Source File: object-parameters.tsx    From mtcute with GNU Lesser General Public License v3.0 6 votes vote down vote up
useStyles = makeStyles((theme) =>
    createStyles({
        table: {
            '& th, & td': {
                fontSize: 15,
            },
        },
        mono: {
            fontFamily: 'Fira Mono, Consolas, monospace',
        },
        bold: {
            fontWeight: 'bold',
        },
        changed: {
            fontWeight: 500,
            border: 'none',
            width: 100,
        },
        added: {
            backgroundColor:
                theme.palette.type === 'light' ? green[100] : green[900],
            color: theme.palette.type === 'light' ? green[900] : green[100],
        },
        modified: {
            backgroundColor:
                theme.palette.type === 'light' ? blue[100] : blue[900],
            color: theme.palette.type === 'light' ? blue[900] : blue[100],
        },
        removed: {
            backgroundColor:
                theme.palette.type === 'light' ? red[100] : red[900],
            color: theme.palette.type === 'light' ? red[900] : red[100],
        },
    })
)
Example #8
Source File: TopNavBar.tsx    From dashboard with Apache License 2.0 6 votes vote down vote up
function TopNavBar({ usesConnection, reconnect, connected }: Props) {
  const dispatch = useDispatch()

  return (
    <NavBar>
      <NavigationItems>
        {usesConnection && (
          <LanguageIcon
            onClick={reconnect}
            style={connected ? { color: green[500] } : { color: red[500] }}
          />
        )}
        <UserActions
          userActionsVisible={false}
          logOut={() => dispatch(logout())}
          toggleUserActions={() => {}}
        />
      </NavigationItems>
    </NavBar>
  )
}
Example #9
Source File: theme.ts    From planning-poker with MIT License 6 votes vote down vote up
customTheme = {
  palette: {
    primary: {
      main: '#75A1DE',
    },
    secondary: {
      main: '#d7d7d7',
    },
    error: {
      main: red.A400,
    },
    background: {
      default: '#fff',
    },
  },
}
Example #10
Source File: Card.tsx    From Demae with MIT License 6 votes vote down vote up
useStyles = makeStyles((theme: Theme) =>
	createStyles({
		root: {
			flexGrow: 1
		},
		media: {
			minHeight: '280px',
			width: '100%'
		},
		expand: {
			transform: 'rotate(0deg)',
			marginLeft: 'auto',
			transition: theme.transitions.create('transform', {
				duration: theme.transitions.duration.shortest,
			}),
		},
		expandOpen: {
			transform: 'rotate(180deg)',
		},
		avatar: {
			backgroundColor: red[500],
		}
	})
)
Example #11
Source File: CreditView.tsx    From clearflask with Apache License 2.0 6 votes vote down vote up
styles = (theme: Theme) => createStyles({
  root: {
    whiteSpace: 'nowrap',
  },
  negative: {
    color: theme.palette.type === 'light' ? red.A700 : red.A100,
  },
  negativeBrackets: {
    opacity: 0.6,
  },
})
Example #12
Source File: CreditFractionView.tsx    From clearflask with Apache License 2.0 6 votes vote down vote up
styles = (theme: Theme) => createStyles({
  root: {
    whiteSpace: 'nowrap',
  },
  negative: {
    color: theme.palette.type === 'light' ? red.A700 : red.A100,
  },
  negativeBrackets: {
    opacity: 0.6,
  },
})
Example #13
Source File: ClusterTemplateCard.tsx    From backstage with Apache License 2.0 6 votes vote down vote up
useStyles = makeStyles((theme: Theme) =>
  createStyles({
    root: {
      maxWidth: 345,
    },
    media: {
      height: 0,
      paddingTop: '56.25%', // 16:9
    },
    expand: {
      transform: 'rotate(0deg)',
      marginLeft: 'auto',
      transition: theme.transitions.create('transform', {
        duration: theme.transitions.duration.shortest,
      }),
    },
    expandOpen: {
      transform: 'rotate(180deg)',
    },
    avatar: {
      fontSize: '1.0rem',
      backgroundColor: red[500],
    },
  }),
)
Example #14
Source File: theme.tsx    From posso-uscire with GNU General Public License v3.0 6 votes vote down vote up
theme = createMuiTheme({
  palette: {
    primary: {
      main: "#556cd6",
    },
    secondary: {
      main: "#19857b",
    },
    error: {
      main: red.A400,
    },
    background: {
      default: "#fff",
    },
  },
})
Example #15
Source File: Card.tsx    From Demae with MIT License 6 votes vote down vote up
useStyles = makeStyles((theme: Theme) =>
	createStyles({
		root: {
			flexGrow: 1
		},
		media: {
			// // height: "56%",
			// minHeight: "200px",
			// width: "100%",
			// borderRadius: "8px"
			paddingTop: "100%",
			height: 0,
			width: "100%"
		},
		expand: {
			transform: "rotate(0deg)",
			marginLeft: "auto",
			transition: theme.transitions.create("transform", {
				duration: theme.transitions.duration.shortest,
			}),
		},
		expandOpen: {
			transform: "rotate(180deg)",
		},
		avatar: {
			backgroundColor: red[500],
		},

	}),
)
Example #16
Source File: LocationModal.tsx    From covid19testing-map with GNU General Public License v3.0 5 votes vote down vote up
useStyles = makeStyles((theme: Theme) =>
  createStyles({
    modal: {
      display: 'flex',
      alignItems: 'center',
      justifyContent: 'center',
    },
    card: {
      maxWidth: '90%',
      width: '600px',
      maxHeight: '90%',
      overflowY: 'auto',
    },
    media: {
      height: 0,
      paddingTop: '56.25%', // 16:9
    },
    detailText: {
      marginLeft: 'auto',
    },
    expand: {
      transform: 'rotate(0deg)',
      marginLeft: 'auto',
      transition: theme.transitions.create('transform', {
        duration: theme.transitions.duration.shortest,
      }),
    },
    expandOpen: {
      transform: 'rotate(180deg)',
    },
    avatar: {
      backgroundColor: red[500],
    },
    callToAction: {
      borderRadius: '20px',
      width: '100%',
      height: '60px',
      fontSize: '20px',
    },
    grid: {
      flexGrow: 1,
    },
    cardMargin: {
      marginBottom: '16px',
    },
    detailsButton: {
      paddingLeft: '8px',
    },
    cardActions: {
      cursor: 'pointer',
    },
    cardHeader: {
      paddingTop: '0px',
      paddingBottom: '0px',
    },
    cardContent: {
      display: 'flexGrow',
      justifyContent: 'center',
      flexWrap: 'nowrap',
      listStyle: 'none',
      padding: theme.spacing(1.5),
      margin: 10,
    },
    chipRoot: {
      display: 'flex',
      flexWrap: 'wrap',
      alignItems: 'top',
      listStyle: 'none',
      padding: theme.spacing(0.5),
      margin: 0,
    },
    chip: {
      margin: theme.spacing(0.5),
    },
  })
)
Example #17
Source File: App.tsx    From waterctl with MIT License 5 votes vote down vote up
useStyles = makeStyles((theme: Theme) =>
  createStyles({
    root: {
      flexGrow: 1,
      paddingTop: '20px',
      display: 'flex',
      alignItems: 'center',
    },
    paper: {
      padding: theme.spacing(2),
      margin: theme.spacing(1),
      width: theme.spacing(36),
    },
    button: {
      '& > *': {
        marginRight: theme.spacing(2),
      },
    },
    buttonProgress: {
      // default secondary color
      color: pink.A400,
      position: 'absolute',
      top: '50%',
      left: '50%',
      marginTop: -12,
      marginLeft: -12,
    },
    startButtonSuccess: {
      backgroundColor: green[500],
      '&:hover': {
        backgroundColor: green[700],
      },
    },
    startButtonFailure: {
      backgroundColor: red[500],
      '&:hover': {
        backgroundColor: red[700],
      },
    },
    quickStartButton: {
      textTransform: 'none',
    }
  }),
)
Example #18
Source File: AppNavMac.tsx    From shadowsocks-electron with GNU General Public License v3.0 5 votes vote down vote up
useStyles = makeStyles((theme: Theme) =>
  createStyles({
    appNavWrapper: {},
    visibilityHidden: {
      visibility: "hidden"
    },
    drawer: {
      // [theme.breakpoints.up("sm")]: {
      //   width: drawerWidth,
      //   flexShrink: 0
      // }
    },
    icons: {
      transition: 'all .2s',
      '&.minimum': {
        backgroundColor: 'rgba(255, 255, 255, .2)',
        '&:hover': {
          transform: 'scale(.8)',
        }
      },
      '&.close': {
        marginLeft: '5px',
        marginRight: '-5px',
        '&:hover': {
          color: red[500]
        }
      }
    },
    disableDrag: {
      '-webkit-app-region': 'none',
    },
    appBar: {
      '-webkit-app-region': 'drag',
      // [theme.breakpoints.up("sm")]: {
      //   width: `calc(100% - ${drawerWidth}px)`,
      //   marginLeft: drawerWidth
      // }
    },
    toolBar: {
      display: 'flex',
      justifyContent: 'flex-end',
      alignItems: 'center',
      minHeight: '36px'
    },
    menuButton: {
      //   [theme.breakpoints.up("sm")]: {
      //   display: "none"
      // }
    },
    title: {
      fontWeight: 'bold'
    }
  })
)
Example #19
Source File: AppNavNormal.tsx    From shadowsocks-electron with GNU General Public License v3.0 5 votes vote down vote up
useStyles = makeStyles((theme: Theme) =>
  createStyles({
    appNavWrapper: {

    },
    drawer: {
      // [theme.breakpoints.up("sm")]: {
      //   width: drawerWidth,
      //   flexShrink: 0
      // }
    },
    visibilityHidden: {
      visibility: "hidden"
    },
    icons: {
      transition: 'all .2s',
      '&.minimum': {
        backgroundColor: 'rgba(255, 255, 255, .2)',
        '&:hover': {
          transform: 'scale(1.1)',
        }
      },
      '&.close': {
        marginLeft: '5px',
        marginRight: '-5px',
        '&:hover': {
          color: red[500]
        }
      }
    },
    disableDrag: {
      '-webkit-app-region': 'none',
    },
    appBar: {
      '-webkit-app-region': 'drag',
      // [theme.breakpoints.up("sm")]: {
      //   width: `calc(100% - ${drawerWidth}px)`,
      //   marginLeft: drawerWidth
      // }
    },
    toolBar: {
      display: 'flex',
      justifyContent: 'space-between',
      alignItems: 'center',
      minHeight: '36px'
    },
    menuButton: {
      //   [theme.breakpoints.up("sm")]: {
      //   display: "none"
      // }
    },
    title: {
      fontWeight: 'bold'
    }
  })
)
Example #20
Source File: theme.ts    From react-app-architecture with Apache License 2.0 5 votes vote down vote up
theme = createMuiTheme({
  palette: {
    type: 'dark',
    primary: {
      light: '#ffac33',
      main: '#ff9800',
      dark: '#b26a00',
      contrastText: '#000',
    },
    secondary: {
      light: '#1C2226',
      main: '#12121c',
      dark: '#0c0c13',
      contrastText: '#fff',
    },
    error: {
      main: red.A400,
    },
    background: {
      paper: '#121212',
      default: '#1C2226',
    },
  },
  shape: {
    borderRadius: 4,
  },
  custom: {
    colors: {
      blueLight: 'aliceBlue',
    },
  },
  typography: {
    fontFamily: [
      'Roboto',
      '-apple-system',
      'BlinkMacSystemFont',
      '"Segoe UI"',
      '"Helvetica Neue"',
      'Arial',
      'sans-serif',
      '"Apple Color Emoji"',
      '"Segoe UI Emoji"',
      '"Segoe UI Symbol"',
    ].join(','),
  },
  shadows: [
    'none',
    '0px 1px 3px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.10),0px 2px 1px -1px rgba(0,0,0,0.08)',
    '0px 1px 5px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.10),0px 3px 1px -2px rgba(0,0,0,0.08)',
    '0px 1px 8px 0px rgba(0,0,0,0.12),0px 3px 4px 0px rgba(0,0,0,0.10),0px 3px 3px -2px rgba(0,0,0,0.08)',
    '0px 2px 4px -1px rgba(0,0,0,0.12),0px 4px 5px 0px rgba(0,0,0,0.10),0px 1px 10px 0px rgba(0,0,0,0.08)',
    '0px 3px 5px -1px rgba(0,0,0,0.12),0px 5px 8px 0px rgba(0,0,0,0.10),0px 1px 14px 0px rgba(0,0,0,0.08)',
    '0px 3px 5px -1px rgba(0,0,0,0.12),0px 6px 10px 0px rgba(0,0,0,0.10),0px 1px 18px 0px rgba(0,0,0,0.08)',
    '0px 4px 5px -2px rgba(0,0,0,0.12),0px 7px 10px 1px rgba(0,0,0,0.10),0px 2px 16px 1px rgba(0,0,0,0.08)',
    '0px 5px 5px -3px rgba(0,0,0,0.12),0px 8px 10px 1px rgba(0,0,0,0.10),0px 3px 14px 2px rgba(0,0,0,0.08)',
    '0px 5px 6px -3px rgba(0,0,0,0.12),0px 9px 12px 1px rgba(0,0,0,0.10),0px 3px 16px 2px rgba(0,0,0,0.08)',
    '0px 6px 6px -3px rgba(0,0,0,0.12),0px 10px 14px 1px rgba(0,0,0,0.10),0px 4px 18px 3px rgba(0,0,0,0.08)',
    '0px 6px 7px -4px rgba(0,0,0,0.12),0px 11px 15px 1px rgba(0,0,0,0.10),0px 4px 20px 3px rgba(0,0,0,0.08)',
    '0px 7px 8px -4px rgba(0,0,0,0.12),0px 12px 17px 2px rgba(0,0,0,0.10),0px 5px 22px 4px rgba(0,0,0,0.08)',
    '0px 7px 8px -4px rgba(0,0,0,0.12),0px 13px 19px 2px rgba(0,0,0,0.10),0px 5px 24px 4px rgba(0,0,0,0.08)',
    '0px 7px 9px -4px rgba(0,0,0,0.12),0px 14px 21px 2px rgba(0,0,0,0.10),0px 5px 26px 4px rgba(0,0,0,0.08)',
    '0px 8px 9px -5px rgba(0,0,0,0.12),0px 15px 22px 2px rgba(0,0,0,0.10),0px 6px 28px 5px rgba(0,0,0,0.08)',
    '0px 8px 10px -5px rgba(0,0,0,0.12),0px 16px 24px 2px rgba(0,0,0,0.10),0px 6px 30px 5px rgba(0,0,0,0.08)',
    '0px 8px 11px -5px rgba(0,0,0,0.12),0px 17px 26px 2px rgba(0,0,0,0.10),0px 6px 32px 5px rgba(0,0,0,0.08)',
    '0px 9px 11px -5px rgba(0,0,0,0.12),0px 18px 28px 2px rgba(0,0,0,0.10),0px 7px 34px 6px rgba(0,0,0,0.08)',
    '0px 9px 12px -6px rgba(0,0,0,0.12),0px 19px 29px 2px rgba(0,0,0,0.10),0px 7px 36px 6px rgba(0,0,0,0.08)',
    '0px 10px 13px -6px rgba(0,0,0,0.12),0px 20px 31px 3px rgba(0,0,0,0.10),0px 8px 38px 7px rgba(0,0,0,0.08)',
    '0px 10px 13px -6px rgba(0,0,0,0.12),0px 21px 33px 3px rgba(0,0,0,0.10),0px 8px 40px 7px rgba(0,0,0,0.08)',
    '0px 10px 14px -6px rgba(0,0,0,0.12),0px 22px 35px 3px rgba(0,0,0,0.10),0px 8px 42px 7px rgba(0,0,0,0.08)',
    '0px 11px 14px -7px rgba(0,0,0,0.12),0px 23px 36px 3px rgba(0,0,0,0.10),0px 9px 44px 8px rgba(0,0,0,0.08)',
    '0px 11px 15px -7px rgba(0,0,0,0.12),0px 24px 38px 3px rgba(0,0,0,0.10),0px 9px 46px 8px rgba(0,0,0,0.08)',
  ],
  overrides: {
    //The overrides key enables you to customize
    // the appearance of all instances of a component type,
    // while the props key enables you to change
    // the default value(s) of a component's props.
  },
})
Example #21
Source File: App.tsx    From ow-mod-manager with MIT License 5 votes vote down vote up
theme = createMuiStrictTheme({
  palette: {
    type: 'dark',
    primary: {
      main: green[700],
    },
    secondary: {
      main: '#ca7300',
      dark: '#975d2e',
      light: '#ffc380',
    },
    error: {
      main: red[500],
      dark: '#7e1e1e',
    },
  },
  overrides: {
    MuiCssBaseline: {
      '@global': {
        body: {
          overflowY: 'hidden',
        },
        '*::-webkit-scrollbar': {
          width: '1em',
          cursor: 'pointer',
        },
        '*::-webkit-scrollbar-track': {
          background: grey[800],
          borderRadius: 0,
        },
        '*::-webkit-scrollbar-thumb': {
          background: grey[700],
          border: `2px solid ${grey[800]}`,
          borderRadius: 0,
          '&:hover': {
            background: grey[600],
          },
        },
      },
    },
    MuiTooltip: {
      tooltip: {
        fontSize: '1em',
      },
    },
  },
})
Example #22
Source File: styles.tsx    From DamnVulnerableCryptoApp with MIT License 5 votes vote down vote up
useStyles = makeStyles({
  chatContainer: {
    border: '1px solid ' + red[400],


  },
  chatTitle: {
    display: 'flex',
    borderBottom: '1px solid #DDD',

    padding: '20px',
    backgroundColor: red[400],
    color: '#FFF'

  },
  chatInput: {
    padding: '20px',
    display: 'flex',
    '& .MuiOutlinedInput-root': {
      '& fieldset': {
        borderRadius: `50px`,
      },
    },
  },
  messageContainer: {
    height: '500px',
    overflow: 'scroll',
    overflowX: 'hidden',
    padding: '20px',

    '&::-webkit-scrollbar': {
      width: '7px'
    },
    '&::-webkit-scrollbar-track': {
      background: '#ddd'
    },
    '&::-webkit-scrollbar-thumb': {
      background: red[400]
    }
  },
  lockIcon: {
    color: 'white'
  },
  participantName: {
    marginTop: '10px',
    paddingLeft: '10px'
  },
  messageRight: {
    display: 'flex',
    justifyContent: 'flex-end',
  },
  messageAuthorImg: {
    paddingTop: '5px'
  },
  messageLeft: {
    display: 'flex'
  },
  messageContent: {
    paddingLeft: '10px'
  },
  participantNameMessage: {
    color: '#AAA',
    paddingLeft: '5px',
  },
  messageChip: {
    paddingBottom: '10px'
  },
  ownMessage: {
    backgroundColor: red[400],
    color: '#FFF'
  },
  receivedMessage: {
    backgroundColor: '#e0e0e0',
    color: '#000'
  },
  auhtorImg: {
    borderRadius: '200px'
  }
})
Example #23
Source File: SnackbarNotification.tsx    From firebase-react-typescript-project-template with MIT License 5 votes vote down vote up
useStyles = makeStyles((theme: Theme) =>
  createStyles({
    root: {
      maxWidth: 600,
    },
    INFO: {
      color: theme.palette.common.white,
      backgroundColor: theme.palette.primary.main,
    },
    WARNING: {
      color: theme.palette.common.white,
      backgroundColor: amber[700],
    },
    SUCCESS: {
      color: theme.palette.common.white,
      backgroundColor: green[400],
    },
    ERROR: {
      color: theme.palette.common.white,
      backgroundColor: red[400],
    },
    message: {
      width: "100%",
      display: "flex",
    },
    messageText: {
      marginRight: theme.spacing(1),
    },
    icon: {
      width: 28,
      height: 28,
    },
    iconVariant: {
      opacity: 0.9,
      marginRight: theme.spacing(2),
    },
    closeButton: {
      padding: theme.spacing(0.25),
      width: theme.spacing(2.75),
      height: theme.spacing(2.75),
      marginLeft: "auto",
      marginTop: theme.spacing(0),
    },
    snackbarContent: {
      padding: theme.spacing(0.75, 1, 0.75, 2),
    },
  })
)
Example #24
Source File: theme.ts    From log4brains with Apache License 2.0 4 votes vote down vote up
theme: CustomTheme = {
  ...responsiveFontSizes(
    createMuiTheme({
      palette: {
        primary: {
          main: primary
        },
        secondary: {
          main: "#FF007B"
        },
        error: {
          main: red.A400
        },
        background: {
          default: "#fff"
        }
      },
      typography: {
        fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
        h1: {
          fontFamily: titleFontFamily
        },
        h2: {
          fontFamily: titleFontFamily
        },
        h3: {
          fontFamily: titleFontFamily,
          lineHeight: 1.1
        },
        h4: {
          fontFamily: titleFontFamily
        },
        h5: {
          fontFamily: titleFontFamily
        },
        h6: {
          fontFamily: titleFontFamily
        }
      },
      props: {
        MuiLink: {
          underline: "none"
        }
      },
      overrides: {
        MuiCssBaseline: {
          "@global": {
            html: {
              maxWidth: "100%"
            },
            body: {
              padding: "0 !important", // for storybook
              maxWidth: "100%"
            },
            blockquote: {
              margin: 0,
              padding: "0 1em",
              borderLeft: "0.25em solid #F8F8F8",
              color: "#9e9e9e"
            }
          }
        },
        MuiLink: {
          root: {
            "&:hover": {
              color: darken(primary, 0.3)
            }
          }
        }
      },
      breakpoints: {
        values: {
          xs: 0,
          sm: 900,
          md: 1060,
          lg: 1280,
          xl: 1920
        }
      }
    })
  ),
  custom: {
    layout: {
      centerColBasis: 750 + 4 * 8,
      centerColPadding: 4 * 8,
      rightColBasis: 180
    }
  }
}