From 0d9c7ff6a638861d54f29bf91c82847cfa62a24c Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Sun, 25 Nov 2018 23:02:12 +0100 Subject: Move spellchecker to premium --- src/theme/dark/index.js | 1 + src/theme/default/index.js | 23 ++++++++++++++++------- 2 files changed, 17 insertions(+), 7 deletions(-) (limited to 'src/theme') 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 @@ import * as legacyStyles from '../default/legacy'; export const colorBackground = legacyStyles.darkThemeGrayDarkest; +export const colorBackgroundSubscriptionContainer = legacyStyles.themeBrandInfo; export 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 @@ import * as legacyStyles from './legacy'; -/* legacy config, injected into sass */ -export const themeBrandPrimary = '#3498db'; -export const themeBrandSuccess = '#5cb85c'; -export const themeBrandInfo = '#5bc0de'; -export const themeBrandWarning = '#FF9F00'; -export const themeBrandDanger = '#d9534f'; +export const brandPrimary = '#3498db'; +export const brandSuccess = '#5cb85c'; +export const brandInfo = '#5bc0de'; +export const brandWarning = '#FF9F00'; +export const brandDanger = '#d9534f'; -export const colorBackground = legacyStyles.themeGrayLighter; +export const borderRadius = legacyStyles.themeBorderRadius; +export const borderRadiusSmall = legacyStyles.themeBorderRadiusSmall; +export const colorBackground = legacyStyles.themeGrayLighter; export const colorHeadline = legacyStyles.themeGrayDark; + +// Subscription Container Component +export const colorSubscriptionContainerBackground = 'none'; +export const colorSubscriptionContainerBorder = [1, 'solid', brandPrimary]; +export const colorSubscriptionContainerTitle = brandPrimary; +export const colorSubscriptionContainerActionButtonBackground = brandPrimary; +export const colorSubscriptionContainerActionButtonColor = '#FFF'; + -- cgit v1.2.3-54-g00ecf