We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Library doesn't provide API for setting custom primary colors.
const muiTheme = createMuiTheme({ palette: { primary: '#337ab7', // custom color in hex error: red } });
The text was updated successfully, but these errors were encountered:
It does:
const muiTheme = createMuiTheme({ palette: { primary: { 500: '#337ab7' }, // custom color in hex error: red } });
And is well documented: https://material-ui.com/customization/themes/#palette
And now we've made it even easier: #9794
Please use gitter or StackOverflow to ask questions, and if submitting a confirmed issue, please fill out the issue template provided.
Sorry, something went wrong.
{ 500: '#337ab7' } so obvious and i still have a problem
{ 500: '#337ab7' }
@miukki Youe error color is a digit short...
- error: { main: '#ff000'}, + error: { main: '#ff0000'},
No branches or pull requests
Library doesn't provide API for setting custom primary colors.
The text was updated successfully, but these errors were encountered: