aboutsummaryrefslogtreecommitdiffstats
path: root/packages/theme
diff options
context:
space:
mode:
Diffstat (limited to 'packages/theme')
-rw-r--r--packages/theme/package-lock.json2
-rw-r--r--packages/theme/src/themes/dark/index.ts1
-rw-r--r--packages/theme/src/themes/default/index.ts4
3 files changed, 6 insertions, 1 deletions
diff --git a/packages/theme/package-lock.json b/packages/theme/package-lock.json
index f188e8d98..a1673ffe8 100644
--- a/packages/theme/package-lock.json
+++ b/packages/theme/package-lock.json
@@ -1,6 +1,6 @@
1{ 1{
2 "name": "@meetfranz/theme", 2 "name": "@meetfranz/theme",
3 "version": "1.0.1", 3 "version": "1.0.2",
4 "lockfileVersion": 1, 4 "lockfileVersion": 1,
5 "requires": true, 5 "requires": true,
6 "dependencies": { 6 "dependencies": {
diff --git a/packages/theme/src/themes/dark/index.ts b/packages/theme/src/themes/dark/index.ts
index bc2db5ca0..58ef63217 100644
--- a/packages/theme/src/themes/dark/index.ts
+++ b/packages/theme/src/themes/dark/index.ts
@@ -43,6 +43,7 @@ export const buttonWarningTextColor = legacyStyles.darkThemeTextColor;
43export const buttonLoaderColor = { 43export const buttonLoaderColor = {
44 primary: '#FFF', 44 primary: '#FFF',
45 secondary: buttonSecondaryTextColor, 45 secondary: buttonSecondaryTextColor,
46 success: '#FFF',
46 warning: '#FFF', 47 warning: '#FFF',
47 danger: '#FFF', 48 danger: '#FFF',
48 inverted: defaultStyles.brandPrimary, 49 inverted: defaultStyles.brandPrimary,
diff --git a/packages/theme/src/themes/default/index.ts b/packages/theme/src/themes/default/index.ts
index 92b82cff1..0f78928c3 100644
--- a/packages/theme/src/themes/default/index.ts
+++ b/packages/theme/src/themes/default/index.ts
@@ -58,6 +58,9 @@ export const buttonPrimaryTextColor = '#FFF';
58export const buttonSecondaryBackground = legacyStyles.themeGrayLighter; 58export const buttonSecondaryBackground = legacyStyles.themeGrayLighter;
59export const buttonSecondaryTextColor = legacyStyles.themeGray; 59export const buttonSecondaryTextColor = legacyStyles.themeGray;
60 60
61export const buttonSuccessBackground = brandSuccess;
62export const buttonSuccessTextColor = '#FFF';
63
61export const buttonDangerBackground = brandDanger; 64export const buttonDangerBackground = brandDanger;
62export const buttonDangerTextColor = '#FFF'; 65export const buttonDangerTextColor = '#FFF';
63 66
@@ -71,6 +74,7 @@ export const buttonInvertedBorder = `1px solid ${brandPrimary}`;
71export const buttonLoaderColor = { 74export const buttonLoaderColor = {
72 primary: '#FFF', 75 primary: '#FFF',
73 secondary: buttonSecondaryTextColor, 76 secondary: buttonSecondaryTextColor,
77 success: '#FFF',
74 warning: '#FFF', 78 warning: '#FFF',
75 danger: '#FFF', 79 danger: '#FFF',
76 inverted: brandPrimary, 80 inverted: brandPrimary,