aboutsummaryrefslogtreecommitdiffstats
path: root/packages/theme/src/themes/default/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/theme/src/themes/default/index.ts')
-rw-r--r--packages/theme/src/themes/default/index.ts35
1 files changed, 11 insertions, 24 deletions
diff --git a/packages/theme/src/themes/default/index.ts b/packages/theme/src/themes/default/index.ts
index cceb321c9..21017bbe0 100644
--- a/packages/theme/src/themes/default/index.ts
+++ b/packages/theme/src/themes/default/index.ts
@@ -82,7 +82,10 @@ export default (brandPrimary: string) => {
82 82
83 colorText, 83 colorText,
84 84
85 defaultContentBorder: color(legacyStyles.themeGrayLighter).darken(0.1).rgb().string(), 85 defaultContentBorder: color(legacyStyles.themeGrayLighter)
86 .darken(0.1)
87 .rgb()
88 .string(),
86 89
87 // Subscription Container Component 90 // Subscription Container Component
88 colorSubscriptionContainerBackground: 'none', 91 colorSubscriptionContainerBackground: 'none',
@@ -94,7 +97,10 @@ export default (brandPrimary: string) => {
94 // Loader 97 // Loader
95 colorAppLoaderSpinner: '#FFF', 98 colorAppLoaderSpinner: '#FFF',
96 colorFullscreenLoaderSpinner: legacyStyles.themeGrayDark, 99 colorFullscreenLoaderSpinner: legacyStyles.themeGrayDark,
97 colorWebviewLoaderBackground: color(legacyStyles.themeGrayLighter).alpha(0.8).rgb().string(), 100 colorWebviewLoaderBackground: color(legacyStyles.themeGrayLighter)
101 .alpha(0.8)
102 .rgb()
103 .string(),
98 104
99 // Input 105 // Input
100 labelColor: legacyStyles.themeGrayLight, 106 labelColor: legacyStyles.themeGrayLight,
@@ -103,7 +109,9 @@ export default (brandPrimary: string) => {
103 inputBackground, 109 inputBackground,
104 inputBorder, 110 inputBorder,
105 inputModifierColor: legacyStyles.themeGrayLight, 111 inputModifierColor: legacyStyles.themeGrayLight,
106 inputPlaceholderColor: color(legacyStyles.themeGrayLight).lighten(0.3).hex(), 112 inputPlaceholderColor: color(legacyStyles.themeGrayLight)
113 .lighten(0.3)
114 .hex(),
107 inputPrefixColor, 115 inputPrefixColor,
108 inputPrefixBackground: legacyStyles.themeGrayLighter, 116 inputPrefixBackground: legacyStyles.themeGrayLighter,
109 inputDisabledOpacity, 117 inputDisabledOpacity,
@@ -227,16 +235,6 @@ export default (brandPrimary: string) => {
227 }, 235 },
228 }, 236 },
229 237
230 // Signup
231 signup: {
232 pricing: {
233 feature: {
234 background: legacyStyles.themeGrayLightest,
235 border: legacyStyles.themeGrayLighter,
236 },
237 },
238 },
239
240 // Todos 238 // Todos
241 todos: { 239 todos: {
242 todosLayer: { 240 todosLayer: {
@@ -255,17 +253,6 @@ export default (brandPrimary: string) => {
255 }, 253 },
256 }, 254 },
257 255
258 // TrialStatusBar
259 trialStatusBar: {
260 bar: {
261 background: legacyStyles.themeGrayLightest,
262 },
263 progressBar: {
264 background: color(legacyStyles.themeGrayLighter).darken(0.1).hex(),
265 progressIndicator: legacyStyles.themeGrayLight,
266 },
267 },
268
269 legacyStyles, 256 legacyStyles,
270 }; 257 };
271}; 258};