ikualo-ui-kit-mobile 0.7.7 → 0.7.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -84,12 +84,12 @@ const getStylesButtonText = (theme: ITheme) => StyleSheet.create({
84
84
  fontSize: 16,
85
85
  },
86
86
  'btn-text--primary': {
87
- color: theme.colors.background_btn,
87
+ color: theme.colors.icon,
88
88
  fontFamily: 'MontserratSemiBold',
89
89
  },
90
90
 
91
91
  'btn-text--disabled': {
92
- color: theme.colors.text_btn_disabled,
92
+ color: theme.colors.icon_disabled,
93
93
  fontFamily: 'MontserratSemiBold',
94
94
  },
95
95
  'btn-text--generic': {
@@ -5,7 +5,7 @@ export const getStyleTabs = (theme: ITheme) => StyleSheet.create({
5
5
  padding: 4,
6
6
  borderRadius: 4,
7
7
  borderColor: theme.colors.transparent,
8
- backgroundColor: theme.colors.background_btn_disabled,
8
+ backgroundColor: theme.colors.background_tab,
9
9
  },
10
10
  tab: {
11
11
  borderRadius: 4,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ikualo-ui-kit-mobile",
3
- "version": "0.7.7",
3
+ "version": "0.7.9",
4
4
  "main": "src/index.ts",
5
5
  "scripts": {
6
6
  "start": "expo start",
@@ -72,6 +72,9 @@ const light = {
72
72
  background_focus: colors.primary_50,
73
73
  background_card: colors.white_25,
74
74
  background_dialog: 'rgba(0, 0, 0, 0.5)',
75
+ background_tab: colors.gray_200,
76
+ background_home: colors.dark_home,
77
+
75
78
 
76
79
  background_btn: colors.dark_900,
77
80
  background_btn_focus: colors.gray_800,
@@ -110,6 +113,9 @@ const dark = {
110
113
  background_focus: colors.dark_800,
111
114
  background_card: colors.dark_800,
112
115
  background_dialog: 'rgba(227, 218, 218, 0.13)',
116
+ background_tab: colors.dark_home,
117
+ background_home: colors.dark_900,
118
+
113
119
 
114
120
  background_btn: colors.primary_300,
115
121
  background_btn_focus: colors.primary_100,