diff options
Diffstat (limited to 'src/lib/theme.js')
-rw-r--r-- | src/lib/theme.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/lib/theme.js b/src/lib/theme.js new file mode 100644 index 0000000..3c671e6 --- /dev/null +++ b/src/lib/theme.js @@ -0,0 +1,24 @@ +import { createMuiTheme } from '@material-ui/core/styles' + +const theme = createMuiTheme({ + palette: { + type: 'dark', + primary: { + main: '#0a0909', + }, + secondary: { + main: '#ff7315', + }, + background: { + default: '#232020', + paper: '#0f0e0e', + elevation: 'rgba(255, 255, 255, 0.04)', + }, + text: { + primary: '#f4f4f4', + secondary: '#6f6666', + } + }, +}); + +export default theme; |