aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-10-17 10:58:45 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-10-17 10:58:45 +0200
commitab78d8ad9097ce92eae337f319245819ba93ca40 (patch)
tree7690407b22b857a58103eee938bfac7761e19bb0 /packages
parentpolishing (diff)
downloadferdium-app-ab78d8ad9097ce92eae337f319245819ba93ca40.tar.gz
ferdium-app-ab78d8ad9097ce92eae337f319245819ba93ca40.tar.zst
ferdium-app-ab78d8ad9097ce92eae337f319245819ba93ca40.zip
polishing
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};