aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/theme/src/themes/dark/index.ts6
-rw-r--r--packages/theme/src/themes/default/index.ts6
2 files changed, 12 insertions, 0 deletions
diff --git a/packages/theme/src/themes/dark/index.ts b/packages/theme/src/themes/dark/index.ts
index 1c0ede8e5..a9d1e1b46 100644
--- a/packages/theme/src/themes/dark/index.ts
+++ b/packages/theme/src/themes/dark/index.ts
@@ -64,6 +64,12 @@ export const selectSearchColor = inputBackground;
64// Modal 64// Modal
65export const colorModalOverlayBackground = color(legacyStyles.darkThemeBlack).alpha(0.8).rgb().string(); 65export const colorModalOverlayBackground = color(legacyStyles.darkThemeBlack).alpha(0.8).rgb().string();
66 66
67// Workspace settings
68export const workspaceSettings = {
69 listItemBorderColor: legacyStyles.darkThemeGrayDarker,
70 listItemHoverBgColor: legacyStyles.darkThemeGrayDarker,
71};
72
67// Workspace Drawer 73// Workspace Drawer
68export const workspaceDrawerBackground = color(colorBackground).lighten(0.3).hex(); 74export const workspaceDrawerBackground = color(colorBackground).lighten(0.3).hex();
69export const workspaceDrawerAddButtonColor = legacyStyles.darkThemeGrayLighter; 75export const workspaceDrawerAddButtonColor = legacyStyles.darkThemeGrayLighter;
diff --git a/packages/theme/src/themes/default/index.ts b/packages/theme/src/themes/default/index.ts
index 718ccf485..e4c74a5c9 100644
--- a/packages/theme/src/themes/default/index.ts
+++ b/packages/theme/src/themes/default/index.ts
@@ -143,6 +143,12 @@ export const badgeBorderRadius = 50;
143// Modal 143// Modal
144export const colorModalOverlayBackground = color('#000').alpha(0.5).rgb().string(); 144export const colorModalOverlayBackground = color('#000').alpha(0.5).rgb().string();
145 145
146// Workspace settings
147export const workspaceSettings = {
148 listItemBorderColor: legacyStyles.themeGrayLightest,
149 listItemHoverBgColor: legacyStyles.themeGrayLightest,
150};
151
146// Workspace Drawer 152// Workspace Drawer
147export const workspaceDrawerWidth = 300; 153export const workspaceDrawerWidth = 300;
148export const workspaceDrawerPadding = 20; 154export const workspaceDrawerPadding = 20;