aboutsummaryrefslogtreecommitdiff
path: root/src/theme.js
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-02-13 01:11:31 -0500
committerDeterminant <ted.sybil@gmail.com>2019-02-13 01:11:31 -0500
commitc594888953151ddfb4ca04b7752bfd51edc1d6da (patch)
tree59b6d0b0f514f76d152eee9a4359c08110f73531 /src/theme.js
parentf28b818cc62c7fff67517a4147e64f08ebd73027 (diff)
WIP: migrate to TypeScriptX
Diffstat (limited to 'src/theme.js')
-rw-r--r--src/theme.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/theme.js b/src/theme.js
deleted file mode 100644
index 0269fd3..0000000
--- a/src/theme.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import { createMuiTheme } from '@material-ui/core/styles';
-import orange from '@material-ui/core/colors/orange';
-import deepOrange from '@material-ui/core/colors/deepOrange';
-
-export const defaultChartColor = deepOrange[300];
-export const theme = createMuiTheme({
- palette: {
- primary: {
- light: orange[300],
- main: orange[500],
- dark: orange[700],
- contrastText: "#fff"
- }
- },
- typography: {
- useNextVariants: true,
- }
-});