aboutsummaryrefslogtreecommitdiffstats
path: root/packages/theme/src/themes/dark/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/theme/src/themes/dark/index.ts')
-rw-r--r--packages/theme/src/themes/dark/index.ts13
1 files changed, 12 insertions, 1 deletions
diff --git a/packages/theme/src/themes/dark/index.ts b/packages/theme/src/themes/dark/index.ts
index 67d0cfb71..30cc19d99 100644
--- a/packages/theme/src/themes/dark/index.ts
+++ b/packages/theme/src/themes/dark/index.ts
@@ -66,7 +66,7 @@ export const selectSearchColor = inputBackground;
66 66
67// Modal 67// Modal
68export const colorModalOverlayBackground = color(legacyStyles.darkThemeBlack).alpha(0.8).rgb().string(); 68export const colorModalOverlayBackground = color(legacyStyles.darkThemeBlack).alpha(0.8).rgb().string();
69export const colorModalBackground = colorContentBackground; 69export const colorModalBackground = legacyStyles.darkThemeGrayDark;
70 70
71// Services 71// Services
72export const services = merge({}, defaultStyles.services, { 72export const services = merge({}, defaultStyles.services, {
@@ -146,3 +146,14 @@ export const todos = merge({}, defaultStyles.todos, {
146 background: legacyStyles.themeGrayLight, 146 background: legacyStyles.themeGrayLight,
147 }, 147 },
148}); 148});
149
150// TrialStatusBar
151export const trialStatusBar = merge({}, defaultStyles.trialStatusBar, {
152 bar: {
153 background: legacyStyles.darkThemeGray,
154 },
155 progressBar: {
156 background: legacyStyles.darkThemeGrayLighter,
157 progressIndicator: legacyStyles.darkThemeGrayLightest,
158 },
159});