aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/theme/ThemeStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'language-web/src/main/js/theme/ThemeStore.ts')
-rw-r--r--language-web/src/main/js/theme/ThemeStore.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/language-web/src/main/js/theme/ThemeStore.ts b/language-web/src/main/js/theme/ThemeStore.ts
index 0f283c98..0e4aeb23 100644
--- a/language-web/src/main/js/theme/ThemeStore.ts
+++ b/language-web/src/main/js/theme/ThemeStore.ts
@@ -34,7 +34,7 @@ export class ThemeStore {
34 mode: themeData.paletteMode, 34 mode: themeData.paletteMode,
35 background: { 35 background: {
36 default: themeData.background, 36 default: themeData.background,
37 paper: themeData.paper, 37 paper: themeData.background,
38 }, 38 },
39 primary: { 39 primary: {
40 main: themeData.primary, 40 main: themeData.primary,
@@ -42,6 +42,10 @@ export class ThemeStore {
42 secondary: { 42 secondary: {
43 main: themeData.secondary, 43 main: themeData.secondary,
44 }, 44 },
45 text: {
46 primary: themeData.foregroundHighlight,
47 secondary: themeData.foreground,
48 },
45 }, 49 },
46 }); 50 });
47 return responsiveFontSizes(materialUiTheme); 51 return responsiveFontSizes(materialUiTheme);