c09846bb36
A snapshot of https://github.com/nymtech/nym-wallet-web/tree/60b36db17d994e597b91981be5d60b0488618019 is put into a wallet-web folder.
20 lines
350 B
TypeScript
20 lines
350 B
TypeScript
import { createMuiTheme } from '@material-ui/core/styles';
|
|
import red from '@material-ui/core/colors/red';
|
|
|
|
export const theme = createMuiTheme({
|
|
palette: {
|
|
primary: {
|
|
main: '#556cd6',
|
|
},
|
|
secondary: {
|
|
main: '#19857b',
|
|
},
|
|
error: {
|
|
main: red.A400,
|
|
},
|
|
background: {
|
|
default: '#fff',
|
|
},
|
|
},
|
|
});
|