aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/index.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'language-web/src/main/js/index.jsx')
-rw-r--r--language-web/src/main/js/index.jsx16
1 files changed, 15 insertions, 1 deletions
diff --git a/language-web/src/main/js/index.jsx b/language-web/src/main/js/index.jsx
index 17e6aef2..7b807c77 100644
--- a/language-web/src/main/js/index.jsx
+++ b/language-web/src/main/js/index.jsx
@@ -46,7 +46,21 @@ scope Family = 1, Person += 5..10.
46const rootStore = new RootStore(); 46const rootStore = new RootStore();
47rootStore.editorStore.updateValue(initialValue); 47rootStore.editorStore.updateValue(initialValue);
48 48
49const theme = createMuiTheme(); 49const theme = createMuiTheme({
50 palette: {
51 type: 'dark',
52 background: {
53 default: '#212121',
54 paper: '#333333',
55 },
56 primary: {
57 main: '#82aaff',
58 },
59 secondary: {
60 main: '#ff5370',
61 },
62 },
63});
50 64
51const app = ( 65const app = (
52 <ThemeProvider theme={theme}> 66 <ThemeProvider theme={theme}>