aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/theme/src/themes/default/index.ts9
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/theme/src/themes/default/index.ts b/packages/theme/src/themes/default/index.ts
index b484d9972..3decec88f 100644
--- a/packages/theme/src/themes/default/index.ts
+++ b/packages/theme/src/themes/default/index.ts
@@ -1,6 +1,7 @@
1import color from 'color'; 1import color from 'color';
2import { cloneDeep } from 'lodash'; 2import { cloneDeep } from 'lodash';
3 3
4import { darkgreen } from 'color-name';
4import * as legacyStyles from '../legacy'; 5import * as legacyStyles from '../legacy';
5 6
6export interface IStyleTypes { 7export interface IStyleTypes {
@@ -224,7 +225,7 @@ export const signup = {
224// Todos 225// Todos
225export const todos = { 226export const todos = {
226 todosLayer: { 227 todosLayer: {
227 borderLeftColor: legacyStyles.themeGrayLighter, 228 borderLeftColor: color(legacyStyles.themeGrayLighter).darken(0.1).hex(),
228 }, 229 },
229 toggleButton: { 230 toggleButton: {
230 background: styleTypes.primary.accent, 231 background: styleTypes.primary.accent,
@@ -242,10 +243,10 @@ export const todos = {
242// TrialStatusBar 243// TrialStatusBar
243export const trialStatusBar = { 244export const trialStatusBar = {
244 bar: { 245 bar: {
245 background: legacyStyles.themeGray, 246 background: legacyStyles.themeGrayLightest,
246 }, 247 },
247 progressBar: { 248 progressBar: {
248 background: legacyStyles.themeGrayLight, 249 background: color(legacyStyles.themeGrayLighter).darken(0.1).hex(),
249 progressIndicator: legacyStyles.themeGrayLighter, 250 progressIndicator: legacyStyles.themeGrayLight,
250 }, 251 },
251}; 252};