aboutsummaryrefslogtreecommitdiff
path: root/src/theme.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/theme.js')
-rw-r--r--src/theme.js18
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;