aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/theme/ThemeProvider.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-11-01 12:05:21 -0400
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-11-05 19:41:33 +0100
commitffe5b08149681f51625bdac43c7ab41ccf5f9cc3 (patch)
treef19137f20c73613ed8d4e63a725e4a1d20a00ec2 /subprojects/frontend/src/theme/ThemeProvider.tsx
parentfeat(frontend): overlay scrollbars for editor (diff)
downloadrefinery-ffe5b08149681f51625bdac43c7ab41ccf5f9cc3.tar.gz
refinery-ffe5b08149681f51625bdac43c7ab41ccf5f9cc3.tar.zst
refinery-ffe5b08149681f51625bdac43c7ab41ccf5f9cc3.zip
feat(frontend): scrollbar annotations
Diffstat (limited to 'subprojects/frontend/src/theme/ThemeProvider.tsx')
-rw-r--r--subprojects/frontend/src/theme/ThemeProvider.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/subprojects/frontend/src/theme/ThemeProvider.tsx b/subprojects/frontend/src/theme/ThemeProvider.tsx
index 47062314..a00d70fe 100644
--- a/subprojects/frontend/src/theme/ThemeProvider.tsx
+++ b/subprojects/frontend/src/theme/ThemeProvider.tsx
@@ -22,6 +22,7 @@ interface OuterPalette {
22} 22}
23 23
24interface HighlightPalette { 24interface HighlightPalette {
25 cursor: string;
25 number: string; 26 number: string;
26 parameter: string; 27 parameter: string;
27 comment: string; 28 comment: string;
@@ -175,6 +176,7 @@ const lightTheme = createResponsiveTheme({
175 border: '#c8c8c8', 176 border: '#c8c8c8',
176 }, 177 },
177 highlight: { 178 highlight: {
179 cursor: '#4078f2',
178 number: '#0084bc', 180 number: '#0084bc',
179 parameter: '#6a3e3e', 181 parameter: '#6a3e3e',
180 comment: '#a0a1a7', 182 comment: '#a0a1a7',
@@ -249,6 +251,7 @@ const darkTheme = createResponsiveTheme({
249 border: '#181a1f', 251 border: '#181a1f',
250 }, 252 },
251 highlight: { 253 highlight: {
254 cursor: '#61afef',
252 number: '#6188a6', 255 number: '#6188a6',
253 parameter: '#c8ae9d', 256 parameter: '#c8ae9d',
254 comment: '#7f848e', 257 comment: '#7f848e',