diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-02 18:21:27 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-02 18:21:27 +0300 |
commit | 1a0831212070ba42649a5bd1e2527925cfd1cbbc (patch) | |
tree | 62f43c6a0e031483c5aa60df206c2dd32458d484 /src/theme.js | |
parent | 7c4e13d11bc2fc5b0f03efc959dd551a30565e8a (diff) | |
download | chrono-cube-ui-1a0831212070ba42649a5bd1e2527925cfd1cbbc.tar.gz |
Create initial theme
Diffstat (limited to 'src/theme.js')
-rw-r--r-- | src/theme.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/theme.js b/src/theme.js new file mode 100644 index 0000000..54b289d --- /dev/null +++ b/src/theme.js @@ -0,0 +1,18 @@ +import React from 'react'; +import { createMuiTheme } from '@material-ui/core/styles' + + +const theme = createMuiTheme({ + palette: { + primary: { + light: '#3a3535', + main: '#232020', + }, + secondary: { + main: '#f4f4f4', + dark: '#ff7315', + }, + }, +}); + +export default theme; |