ikualo-ui-kit-mobile 1.2.6 → 1.2.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ikualo-ui-kit-mobile",
3
- "version": "1.2.6",
3
+ "version": "1.2.8",
4
4
  "main": "src/index.ts",
5
5
  "scripts": {
6
6
  "start": "expo start",
@@ -178,7 +178,7 @@ const dark = {
178
178
  text_high_secondary: colors.secondary_300,
179
179
  text_disabled: colors.gray_500,
180
180
 
181
- text_btn: colors.gray_800,
181
+ text_btn: colors.base_dark,
182
182
  text_btn_alt: colors.secondary_alte,
183
183
  text_btn_disabled: colors.gray_500,
184
184
  text_home: colors.gray_200,
@@ -32,6 +32,7 @@ export const BtnContained = (props: IBtnContained) => {
32
32
  labelStyle={[
33
33
  stylesButtonContained['btn-contained-text'],
34
34
  stylesButtonContained[`btn-contained--${size ?? 'md'}`],
35
+ { color: stylesButtonContained[`btn-contained--${color ?? 'primary'}`].color },
35
36
  isDisabled && stylesButtonContained[`btn-contained--disabled`],
36
37
  labelStyle ?? '',
37
38
  ]}