aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/theme/ThemeProvider.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/theme/ThemeProvider.tsx')
-rw-r--r--subprojects/frontend/src/theme/ThemeProvider.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/subprojects/frontend/src/theme/ThemeProvider.tsx b/subprojects/frontend/src/theme/ThemeProvider.tsx
index a996cde8..6905fb4b 100644
--- a/subprojects/frontend/src/theme/ThemeProvider.tsx
+++ b/subprojects/frontend/src/theme/ThemeProvider.tsx
@@ -220,7 +220,7 @@ function createResponsiveTheme(
220 return responsiveFontSizes(themeWithOverrides); 220 return responsiveFontSizes(themeWithOverrides);
221} 221}
222 222
223const lightTheme = (() => { 223export const lightTheme = (() => {
224 const primaryText = '#19202b'; 224 const primaryText = '#19202b';
225 const disabledText = '#a0a1a7'; 225 const disabledText = '#a0a1a7';
226 const darkBackground = '#f5f5f5'; 226 const darkBackground = '#f5f5f5';
@@ -282,7 +282,7 @@ const lightTheme = (() => {
282 }); 282 });
283})(); 283})();
284 284
285const darkTheme = (() => { 285export const darkTheme = (() => {
286 const primaryText = '#ebebff'; 286 const primaryText = '#ebebff';
287 const secondaryText = '#abb2bf'; 287 const secondaryText = '#abb2bf';
288 const darkBackground = '#21252b'; 288 const darkBackground = '#21252b';