aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/theme/ThemeProvider.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-09-13 20:39:27 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-09-14 12:10:43 +0200
commit748bf89911359bffbfafe354e522f7d656488146 (patch)
tree555fe86e0a068eda1f84538faaca8d6e76fd3bd8 /subprojects/frontend/src/theme/ThemeProvider.tsx
parentchore(deps): bump dependencies (diff)
downloadrefinery-748bf89911359bffbfafe354e522f7d656488146.tar.gz
refinery-748bf89911359bffbfafe354e522f7d656488146.tar.zst
refinery-748bf89911359bffbfafe354e522f7d656488146.zip
refactor(language): clarify containment hierarchy
Diffstat (limited to 'subprojects/frontend/src/theme/ThemeProvider.tsx')
-rw-r--r--subprojects/frontend/src/theme/ThemeProvider.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/subprojects/frontend/src/theme/ThemeProvider.tsx b/subprojects/frontend/src/theme/ThemeProvider.tsx
index ffb18a06..550b3b30 100644
--- a/subprojects/frontend/src/theme/ThemeProvider.tsx
+++ b/subprojects/frontend/src/theme/ThemeProvider.tsx
@@ -70,8 +70,8 @@ const typography: TypographyVariantsOptions = {
70 fontFamily: 70 fontFamily:
71 '"InterVariable", "Inter", "Roboto", "Helvetica", "Arial", sans-serif', 71 '"InterVariable", "Inter", "Roboto", "Helvetica", "Arial", sans-serif',
72 fontWeightMedium: 600, 72 fontWeightMedium: 600,
73 fontWeightEditorNormal: 450, 73 fontWeightEditorNormal: 400,
74 fontWeightEditorBold: 650, 74 fontWeightEditorBold: 700,
75 editor: { 75 editor: {
76 fontFamily: 76 fontFamily:
77 '"JetBrains MonoVariable", "JetBrains Mono", "Cascadia Code", "Fira Code", monospace', 77 '"JetBrains MonoVariable", "JetBrains Mono", "Cascadia Code", "Fira Code", monospace',
@@ -173,7 +173,7 @@ const lightTheme = createResponsiveTheme({
173 divider: alpha('#19202b', 0.16), 173 divider: alpha('#19202b', 0.16),
174 outer: { 174 outer: {
175 background: '#f5f5f5', 175 background: '#f5f5f5',
176 border: '#d6d7d9', 176 border: '#c8c8c8',
177 }, 177 },
178 highlight: { 178 highlight: {
179 number: '#0084bc', 179 number: '#0084bc',
@@ -200,8 +200,8 @@ const lightTheme = createResponsiveTheme({
200const darkTheme = createResponsiveTheme({ 200const darkTheme = createResponsiveTheme({
201 typography: { 201 typography: {
202 ...typography, 202 ...typography,
203 fontWeightEditorNormal: 400, 203 fontWeightEditorNormal: 350,
204 fontWeightEditorBold: 600, 204 fontWeightEditorBold: 650,
205 }, 205 },
206 components: { 206 components: {
207 ...components, 207 ...components,