aboutsummaryrefslogtreecommitdiffstats
path: root/src/theme
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-25 23:02:12 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-25 23:02:12 +0100
commit0d9c7ff6a638861d54f29bf91c82847cfa62a24c (patch)
tree1091fc0fe9b498e7b6fa69386ed2586d298d9269 /src/theme
parentFix delayApp issues (diff)
downloadferdium-app-0d9c7ff6a638861d54f29bf91c82847cfa62a24c.tar.gz
ferdium-app-0d9c7ff6a638861d54f29bf91c82847cfa62a24c.tar.zst
ferdium-app-0d9c7ff6a638861d54f29bf91c82847cfa62a24c.zip
Move spellchecker to premium
Diffstat (limited to 'src/theme')
-rw-r--r--src/theme/dark/index.js1
-rw-r--r--src/theme/default/index.js23
2 files changed, 17 insertions, 7 deletions
diff --git a/src/theme/dark/index.js b/src/theme/dark/index.js
index e0e017c7c..496a51119 100644
--- a/src/theme/dark/index.js
+++ b/src/theme/dark/index.js
@@ -1,5 +1,6 @@
1import * as legacyStyles from '../default/legacy'; 1import * as legacyStyles from '../default/legacy';
2 2
3export const colorBackground = legacyStyles.darkThemeGrayDarkest; 3export const colorBackground = legacyStyles.darkThemeGrayDarkest;
4export const colorBackgroundSubscriptionContainer = legacyStyles.themeBrandInfo;
4 5
5export const colorHeadline = legacyStyles.darkThemeTextColor; 6export const colorHeadline = legacyStyles.darkThemeTextColor;
diff --git a/src/theme/default/index.js b/src/theme/default/index.js
index f8b6e898d..8766fb609 100644
--- a/src/theme/default/index.js
+++ b/src/theme/default/index.js
@@ -1,12 +1,21 @@
1import * as legacyStyles from './legacy'; 1import * as legacyStyles from './legacy';
2 2
3/* legacy config, injected into sass */ 3export const brandPrimary = '#3498db';
4export const themeBrandPrimary = '#3498db'; 4export const brandSuccess = '#5cb85c';
5export const themeBrandSuccess = '#5cb85c'; 5export const brandInfo = '#5bc0de';
6export const themeBrandInfo = '#5bc0de'; 6export const brandWarning = '#FF9F00';
7export const themeBrandWarning = '#FF9F00'; 7export const brandDanger = '#d9534f';
8export const themeBrandDanger = '#d9534f';
9 8
10export const colorBackground = legacyStyles.themeGrayLighter; 9export const borderRadius = legacyStyles.themeBorderRadius;
10export const borderRadiusSmall = legacyStyles.themeBorderRadiusSmall;
11 11
12export const colorBackground = legacyStyles.themeGrayLighter;
12export const colorHeadline = legacyStyles.themeGrayDark; 13export const colorHeadline = legacyStyles.themeGrayDark;
14
15// Subscription Container Component
16export const colorSubscriptionContainerBackground = 'none';
17export const colorSubscriptionContainerBorder = [1, 'solid', brandPrimary];
18export const colorSubscriptionContainerTitle = brandPrimary;
19export const colorSubscriptionContainerActionButtonBackground = brandPrimary;
20export const colorSubscriptionContainerActionButtonColor = '#FFF';
21