Created
March 4, 2022 17:35
-
-
Save SahanAmarsha/e0c597bead8f100bfeaaf452482309b3 to your computer and use it in GitHub Desktop.
Define custom theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// define theme | |
const theme = createTheme({ | |
palette: { | |
primary: { | |
light: '#63b8ff', | |
main: '#0989e3', | |
dark: '#005db0', | |
contrastText: '#000', | |
}, | |
secondary: { | |
main: '#4db6ac', | |
light: '#82e9de', | |
dark: '#00867d', | |
contrastText: '#000', | |
}, | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment