Skip to content

Instantly share code, notes, and snippets.

@gcmatheusj
Created May 25, 2020 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gcmatheusj/4ab813dbfe73d8fb6c1f3594662f3f1b to your computer and use it in GitHub Desktop.
Save gcmatheusj/4ab813dbfe73d8fb6c1f3594662f3f1b to your computer and use it in GitHub Desktop.
import { createMuiTheme } from '@material-ui/core/styles'
export const theme = createMuiTheme({
overrides: {
MuiButton: {
root: {
borderRadius: 8,
fontWeight: 'bold',
boxShadow: 'none'
}
}
},
palette: {
background: {
default: '#0F1561'
},
text: {
primary: '#263238'
},
primary: {
main: '#AA25FF',
light: '#e161ff',
dark: '#7300cb'
},
secondary: {
main: '#00BB42',
light: '#A1E7C1',
dark: '#00890d'
}
},
typography: {
fontFamily: '"Quicksand"',
fontWeightLight: 300,
fontWeightRegular: 400,
fontWeightMedium: 500
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment