aboutsummaryrefslogtreecommitdiff
path: root/src/theme.js
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-01-30 11:53:44 -0500
committerDeterminant <ted.sybil@gmail.com>2019-01-30 11:53:44 -0500
commite458b7a692d9ac4ab91b2ef6ee36ff439c528c50 (patch)
tree973e210e1e5989841955705e54e7462e3f68f367 /src/theme.js
parent00f036861c73f72f8863cbc2259b440ca1344df1 (diff)
re-organize even more
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..3773e6e
--- /dev/null
+++ b/src/theme.js
@@ -0,0 +1,18 @@
+import { createMuiTheme } from '@material-ui/core/styles';
+import orange from '@material-ui/core/colors/orange';
+
+const theme = createMuiTheme({
+ palette: {
+ primary: {
+ light: orange[300],
+ main: orange[500],
+ dark: orange[700],
+ contrastText: "#fff"
+ }
+ },
+ typography: {
+ useNextVariants: true,
+ }
+});
+
+export default theme;