@utilitywarehouse/hearth-react-native 0.31.0 → 0.31.1

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.
Files changed (63) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/.turbo/turbo-lint.log +13 -13
  3. package/CHANGELOG.md +16 -0
  4. package/build/components/Table/TableHeaderCell.js +10 -1
  5. package/build/core/themes.d.ts +92 -88
  6. package/build/tokens/color.d.ts +82 -80
  7. package/build/tokens/color.js +41 -40
  8. package/build/tokens/components/dark/alert.d.ts +6 -6
  9. package/build/tokens/components/dark/alert.js +6 -6
  10. package/build/tokens/components/dark/bottom-navigation.d.ts +2 -2
  11. package/build/tokens/components/dark/bottom-navigation.js +2 -2
  12. package/build/tokens/components/dark/checkbox.d.ts +1 -1
  13. package/build/tokens/components/dark/checkbox.js +1 -1
  14. package/build/tokens/components/dark/icon-button.d.ts +3 -3
  15. package/build/tokens/components/dark/icon-button.js +3 -3
  16. package/build/tokens/components/dark/inline-link.d.ts +1 -1
  17. package/build/tokens/components/dark/inline-link.js +1 -1
  18. package/build/tokens/components/dark/link.d.ts +3 -3
  19. package/build/tokens/components/dark/link.js +3 -3
  20. package/build/tokens/components/dark/navigation.d.ts +2 -2
  21. package/build/tokens/components/dark/navigation.js +2 -2
  22. package/build/tokens/components/dark/parts.d.ts +2 -2
  23. package/build/tokens/components/dark/parts.js +2 -2
  24. package/build/tokens/components/dark/progress-bar.d.ts +3 -3
  25. package/build/tokens/components/dark/progress-bar.js +3 -3
  26. package/build/tokens/components/dark/progress-stepper.d.ts +1 -1
  27. package/build/tokens/components/dark/progress-stepper.js +1 -1
  28. package/build/tokens/components/dark/spinner.d.ts +1 -1
  29. package/build/tokens/components/dark/spinner.js +1 -1
  30. package/build/tokens/components/dark/table.d.ts +2 -0
  31. package/build/tokens/components/dark/table.js +2 -0
  32. package/build/tokens/components/dark/time-picker.d.ts +1 -0
  33. package/build/tokens/components/dark/time-picker.js +1 -0
  34. package/build/tokens/components/light/parts.d.ts +3 -3
  35. package/build/tokens/components/light/parts.js +3 -3
  36. package/build/tokens/components/light/table.d.ts +2 -0
  37. package/build/tokens/components/light/table.js +2 -0
  38. package/build/tokens/components/light/time-picker.d.ts +1 -0
  39. package/build/tokens/components/light/time-picker.js +1 -0
  40. package/build/tokens/semantic-dark.d.ts +40 -40
  41. package/build/tokens/semantic-dark.js +40 -40
  42. package/docs/changelog.mdx +149 -0
  43. package/package.json +3 -3
  44. package/src/components/Table/TableHeaderCell.tsx +10 -1
  45. package/src/tokens/color.ts +41 -40
  46. package/src/tokens/components/dark/alert.ts +6 -6
  47. package/src/tokens/components/dark/bottom-navigation.ts +2 -2
  48. package/src/tokens/components/dark/checkbox.ts +1 -1
  49. package/src/tokens/components/dark/icon-button.ts +3 -3
  50. package/src/tokens/components/dark/inline-link.ts +1 -1
  51. package/src/tokens/components/dark/link.ts +3 -3
  52. package/src/tokens/components/dark/navigation.ts +2 -2
  53. package/src/tokens/components/dark/parts.ts +2 -2
  54. package/src/tokens/components/dark/progress-bar.ts +3 -3
  55. package/src/tokens/components/dark/progress-stepper.ts +1 -1
  56. package/src/tokens/components/dark/spinner.ts +1 -1
  57. package/src/tokens/components/dark/table.ts +2 -0
  58. package/src/tokens/components/dark/time-picker.ts +1 -0
  59. package/src/tokens/components/light/parts.ts +3 -3
  60. package/src/tokens/components/light/table.ts +2 -0
  61. package/src/tokens/components/light/time-picker.ts +1 -0
  62. package/src/tokens/semantic-dark.ts +40 -40
  63. package/vercel.json +0 -21
@@ -9,6 +9,155 @@ import { BackToTopButton, NextPrevPage } from './components';
9
9
  The changelog for the Hearth React Native library. Here you can find all the changes, improvements, and bug fixes for each version.
10
10
 
11
11
 
12
+ ## 0.31.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [#1108](https://github.com/utilitywarehouse/hearth/pull/1108) [`8c2f3b5`](https://github.com/utilitywarehouse/hearth/commit/8c2f3b5334de83a7dd799b857394a34209b748e7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add margin, padding, and layout utility props to `Flex`.
17
+
18
+ `Flex` now exposes the shared margin and padding utility props, along with the existing layout utility prop surface, so it can be used more like other layout primitives such as `Card`.
19
+
20
+ **Component affected**:
21
+ - `Flex`
22
+
23
+ **Developer changes**:
24
+
25
+ You can now apply spacing and layout utility props directly on `Flex`:
26
+
27
+ ```tsx
28
+ <Flex direction="row" spacing="md" padding="300" marginTop="200" flex={1}>
29
+ <Button>Back</Button>
30
+ <Button>Continue</Button>
31
+ </Flex>
32
+ ```
33
+
34
+ - [#1104](https://github.com/utilitywarehouse/hearth/pull/1104) [`91feeab`](https://github.com/utilitywarehouse/hearth/commit/91feeab091ae6bf80e543f9196214066ce8b29b0) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add custom trigger content options to `ExpandableCard`.
35
+
36
+ `ExpandableCard` now supports a `triggerContent` prop for replacing the default trigger layout while keeping the chevron. `ExpandableCardTrigger` also now supports `children` with an optional `showChevron` prop, so you can fully compose the trigger content yourself and still opt in to the built-in expand/collapse chevron.
37
+
38
+ **Components affected**:
39
+ - `ExpandableCard`
40
+ - `ExpandableCardTrigger`
41
+
42
+ **Developer changes**:
43
+
44
+ Use `triggerContent` when you want a single prop on `ExpandableCard` to replace the standard trigger content:
45
+
46
+ ```tsx
47
+ <ExpandableCard
48
+ triggerContent={<BodyText weight="semibold">March bill ready</BodyText>}
49
+ expandedContent={<BodyText>Balance: £89.50</BodyText>}
50
+ />
51
+ ```
52
+
53
+ Use `ExpandableCardTrigger` children when you want full control over the trigger structure. Add `showChevron` if you still want the built-in chevron:
54
+
55
+ ```tsx
56
+ <ExpandableCardTrigger isExpanded={expanded} onPress={toggleExpanded} showChevron>
57
+ <ExpandableCardContent>
58
+ <ExpandableCardText>Custom trigger</ExpandableCardText>
59
+ </ExpandableCardContent>
60
+ </ExpandableCardTrigger>
61
+ ```
62
+
63
+ - [#1109](https://github.com/utilitywarehouse/hearth/pull/1109) [`8215550`](https://github.com/utilitywarehouse/hearth/commit/8215550745d08a8b4c18a6902e39d3199018092a) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `numberOfLines` support to `Badge` text.
64
+
65
+ `Badge` now renders its text content on a single line by default and supports a new `numberOfLines` prop when you want to allow more lines.
66
+
67
+ **Components affected**:
68
+ - `Badge`
69
+
70
+ **Developer changes**:
71
+
72
+ No changes are required unless you want a `Badge` to wrap onto more than one line. To opt in, pass `numberOfLines`:
73
+
74
+ ```tsx
75
+ <Badge numberOfLines={2} text="Long badge text that can wrap onto a second line" />
76
+ ```
77
+
78
+ - [#1108](https://github.com/utilitywarehouse/hearth/pull/1108) [`8c2f3b5`](https://github.com/utilitywarehouse/hearth/commit/8c2f3b5334de83a7dd799b857394a34209b748e7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add custom footer support to `Modal` and `NavModal`.
79
+
80
+ `Modal` and `NavModal` now support a `footer` prop for replacing the built-in primary and secondary action buttons with custom content, plus a `footerStyle` prop for styling the footer container. When `footer` is provided, the button props are now disallowed at the type level.
81
+
82
+ **Components affected**:
83
+ - `Modal`
84
+ - `NavModal`
85
+
86
+ **Developer changes**:
87
+
88
+ Use `footer` when you need a custom footer layout, such as horizontal actions or extra decoration:
89
+
90
+ ```tsx
91
+ <Modal
92
+ heading="Update billing details"
93
+ footer={
94
+ <Flex direction="row" spacing="md" pt="250">
95
+ <Button variant="outline" colorScheme="functional" style={{ flex: 1 }}>
96
+ Cancel
97
+ </Button>
98
+ <Button style={{ flex: 1 }}>Save changes</Button>
99
+ </Flex>
100
+ }
101
+ footerStyle={{
102
+ boxShadow: '0px -6px 12px rgba(16, 24, 40, 0.12)',
103
+ }}
104
+ />
105
+ ```
106
+
107
+ - [#1103](https://github.com/utilitywarehouse/hearth/pull/1103) [`e375a44`](https://github.com/utilitywarehouse/hearth/commit/e375a442c507da1807e49f4d78e44edfff51d245) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add optional vertical resizing to `Textarea`.
108
+
109
+ `Textarea` now supports a new `resizable` prop that adds a bottom-right drag handle so people can increase the field height when they need more space for longer content.
110
+
111
+ **Components affected**:
112
+ - `Textarea`
113
+
114
+ **Developer changes**:
115
+
116
+ No changes are required unless you want to enable resizing for a textarea. To opt in, pass the new `resizable` prop:
117
+
118
+ ```tsx
119
+ <Textarea
120
+ label="Additional notes"
121
+ helperText="Drag the corner handle to resize"
122
+ placeholder="Enter your text here..."
123
+ resizable
124
+ />
125
+ ```
126
+
127
+ - [#1108](https://github.com/utilitywarehouse/hearth/pull/1108) [`8c2f3b5`](https://github.com/utilitywarehouse/hearth/commit/8c2f3b5334de83a7dd799b857394a34209b748e7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add flex utility props to `Container`.
128
+
129
+ `Container` now exposes shared flex layout utility props, allowing layout properties such as `flex`, `alignItems`, `justifyContent`, and `flexDirection` to be applied directly through its public prop API.
130
+
131
+ **Component affected**:
132
+ - `Container`
133
+
134
+ **Developer changes**:
135
+
136
+ You can now combine `Container`'s existing spacing props with flex layout props:
137
+
138
+ ```tsx
139
+ <Container flex={1} justifyContent="center" alignItems="stretch" gap="200">
140
+ <BodyText>Content</BodyText>
141
+ </Container>
142
+ ```
143
+
144
+ ### Patch Changes
145
+
146
+ - [#1103](https://github.com/utilitywarehouse/hearth/pull/1103) [`e375a44`](https://github.com/utilitywarehouse/hearth/commit/e375a442c507da1807e49f4d78e44edfff51d245) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Render FormField optional text with regular weight instead of inheriting the label weight.
147
+
148
+ This fixes FormField labels that append `(Optional)` so the optional text no longer inherits the main label weight.
149
+
150
+ **Components affected**:
151
+ - `FormField`
152
+ - `Textarea`
153
+ - `Input`
154
+
155
+ **Developer changes**:
156
+
157
+ No changes are required.
158
+
159
+ - [#1104](https://github.com/utilitywarehouse/hearth/pull/1104) [`91feeab`](https://github.com/utilitywarehouse/hearth/commit/91feeab091ae6bf80e543f9196214066ce8b29b0) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: `ExpandableCard` heading font size and weight
160
+
12
161
  ## 0.30.4
13
162
 
14
163
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utilitywarehouse/hearth-react-native",
3
- "version": "0.31.0",
3
+ "version": "0.31.1",
4
4
  "description": "Utility Warehouse React Native UI library",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -58,10 +58,10 @@
58
58
  "vite-plugin-svgr": "^4.5.0",
59
59
  "vitest": "^3.2.4",
60
60
  "@utilitywarehouse/hearth-fonts": "^0.0.4",
61
- "@utilitywarehouse/hearth-react-icons": "^0.8.0",
62
61
  "@utilitywarehouse/hearth-react-native-icons": "^0.8.0",
63
62
  "@utilitywarehouse/hearth-svg-assets": "^0.6.0",
64
- "@utilitywarehouse/hearth-tokens": "^0.2.4"
63
+ "@utilitywarehouse/hearth-tokens": "^0.2.4",
64
+ "@utilitywarehouse/hearth-react-icons": "^0.8.0"
65
65
  },
66
66
  "peerDependencies": {
67
67
  "@gorhom/bottom-sheet": ">=5.0.0",
@@ -11,9 +11,10 @@ const renderContent = (
11
11
  weight: 'regular' | 'semibold' = 'semibold',
12
12
  color: 'purple' | 'white' = 'white'
13
13
  ) => {
14
+ styles.useVariants({ color });
14
15
  if (typeof children === 'string' || typeof children === 'number') {
15
16
  return (
16
- <BodyText size="md" weight={weight} style={styles.text} inverted={color === 'purple'}>
17
+ <BodyText size="md" weight={weight} style={styles.text}>
17
18
  {children}
18
19
  </BodyText>
19
20
  );
@@ -129,6 +130,14 @@ const styles = StyleSheet.create(theme => ({
129
130
  color: theme.color.text.primary,
130
131
  },
131
132
  },
133
+ color: {
134
+ purple: {
135
+ color: theme.components.table.headerCell.foregoundColorInverted,
136
+ },
137
+ white: {
138
+ color: theme.components.table.headerCell.foregoundColor,
139
+ },
140
+ },
132
141
  },
133
142
  },
134
143
  }));
@@ -94,6 +94,7 @@ export const grey = {
94
94
  '700': '#4c4c4c',
95
95
  '800': '#3f3f3f',
96
96
  '900': '#3a3837',
97
+ '925': '#2f2d2d',
97
98
  '950': '#232323',
98
99
  '975': '#191919',
99
100
  '1000': '#101010',
@@ -480,25 +481,25 @@ export const light = {
480
481
 
481
482
  export const dark = {
482
483
  background: {
483
- brand: '#7a42c8',
484
+ brand: '#442484',
484
485
  loading: '#30302c',
485
486
  primary: '#191917',
486
- secondary: '#232323',
487
+ secondary: '#2f2d2d',
487
488
  },
488
489
  border: {
489
- strong: '#ebebeb',
490
- subtle: '#4c473d',
490
+ strong: '#888888',
491
+ subtle: '#5b5b5b',
491
492
  },
492
493
  feedback: {
493
494
  danger: {
494
- border: '#ff7964',
495
+ border: '#f4412a',
495
496
  foreground: {
496
- default: '#101010',
497
+ default: '#ffffff',
497
498
  subtle: '#ff7964',
498
499
  },
499
500
  surface: {
500
- default: '#ff634a',
501
- subtle: '#ffa89d',
501
+ default: '#de2612',
502
+ subtle: '#6b1f1a',
502
503
  },
503
504
  },
504
505
  functional: {
@@ -513,36 +514,36 @@ export const dark = {
513
514
  },
514
515
  },
515
516
  info: {
516
- border: '#6bb0ff',
517
+ border: '#2786f1',
517
518
  foreground: {
518
- default: '#101010',
519
+ default: '#ffffff',
519
520
  subtle: '#6bb0ff',
520
521
  },
521
522
  surface: {
522
- default: '#6bb0ff',
523
- subtle: '#bcddff',
523
+ default: '#1c6cd4',
524
+ subtle: '#0b3375',
524
525
  },
525
526
  },
526
527
  positive: {
527
- border: '#58ca93',
528
+ border: '#19a660',
528
529
  foreground: {
529
- default: '#101010',
530
+ default: '#ffffff',
530
531
  subtle: '#58ca93',
531
532
  },
532
533
  surface: {
533
- default: '#36bf7d',
534
- subtle: '#a2e2c3',
534
+ default: '#0f834a',
535
+ subtle: '#074b2a',
535
536
  },
536
537
  },
537
538
  warning: {
538
- border: '#ff9639',
539
+ border: '#f56e00',
539
540
  foreground: {
540
- default: '#101010',
541
+ default: '#ffffff',
541
542
  subtle: '#ff9639',
542
543
  },
543
544
  surface: {
544
- default: '#ff8010',
545
- subtle: '#ffcca8',
545
+ default: '#cf5d00',
546
+ subtle: '#893900',
546
547
  },
547
548
  },
548
549
  },
@@ -585,9 +586,9 @@ export const dark = {
585
586
  },
586
587
  surface: {
587
588
  strong: {
588
- active: '#c6b5e2',
589
- default: '#996cda',
590
- hover: '#af90de',
589
+ active: '#ddd5eb',
590
+ default: '#af90de',
591
+ hover: '#c6b5e2',
591
592
  },
592
593
  },
593
594
  },
@@ -670,52 +671,52 @@ export const dark = {
670
671
  },
671
672
  },
672
673
  shadow: {
673
- brand: '#7a42c8',
674
- broadband: '#506c21',
675
- cashback: '#8b2bc9',
676
- default: '#f7f7f7',
677
- energy: '#326e7a',
678
- insurance: '#9b4c0e',
679
- mobile: '#a7266d',
680
- pig: '#8f358f',
674
+ brand: '#442484',
675
+ broadband: '#4f6b20',
676
+ cashback: '#7429b5',
677
+ default: '#3f3f3f',
678
+ energy: '#2c6370',
679
+ insurance: '#7f4518',
680
+ mobile: '#8a3260',
681
+ pig: '#7a1f7e',
681
682
  },
682
683
  surface: {
683
684
  brand: {
684
- default: '#996cda',
685
+ default: '#af90de',
685
686
  strong: '#26164f',
686
687
  subtle: '#442484',
687
688
  },
688
689
  broadband: {
689
690
  default: '#506c21',
690
- subtle: '#35421c',
691
+ subtle: '#4f6b20',
691
692
  },
692
693
  cashback: {
693
694
  default: '#8b2bc9',
694
- subtle: '#522270',
695
+ subtle: '#7429b5',
695
696
  },
696
697
  energy: {
697
698
  default: '#326e7a',
698
- subtle: '#254348',
699
+ subtle: '#2c6370',
699
700
  },
700
701
  highlight: {
701
702
  default: '#ffb921',
702
- subtle: '#756230',
703
+ subtle: '#82692b',
703
704
  },
704
705
  insurance: {
705
706
  default: '#9b4c0e',
706
- subtle: '#5a3213',
707
+ subtle: '#7f4518',
707
708
  },
708
709
  mobile: {
709
710
  default: '#a7266d',
710
- subtle: '#601f42',
711
+ subtle: '#8a3260',
711
712
  },
712
713
  neutral: {
713
- strong: '#232323',
714
+ strong: '#2f2d2d',
714
715
  subtle: '#191917',
715
716
  },
716
717
  pig: {
717
718
  default: '#8f358f',
718
- subtle: '#5d2167',
719
+ subtle: '#7a1f7e',
719
720
  },
720
721
  },
721
722
  text: {
@@ -10,15 +10,15 @@ export default {
10
10
  gap: 8,
11
11
  iconButton: {
12
12
  unstyled: {
13
- foregroundColor: '#101010',
14
- foregroundColorActive: '#3f3f3f',
15
- foregroundColorHover: '#3a3837',
13
+ foregroundColor: '#ebebeb',
14
+ foregroundColorActive: '#b2afae',
15
+ foregroundColorHover: '#d3d3d3',
16
16
  },
17
17
  },
18
18
  link: {
19
- color: '#101010',
20
- colorActive: '#3f3f3f',
21
- colorHover: '#3a3837',
19
+ color: '#ebebeb',
20
+ colorActive: '#b2afae',
21
+ colorHover: '#d3d3d3',
22
22
  },
23
23
  padding: 14,
24
24
  } as const;
@@ -12,10 +12,10 @@ export default {
12
12
  item: {
13
13
  gap: 2,
14
14
  icon: {
15
- colorActive: '#996cda',
15
+ colorActive: '#af90de',
16
16
  },
17
17
  label: {
18
- colorActive: '#996cda',
18
+ colorActive: '#af90de',
19
19
  },
20
20
  paddingBottom: 2,
21
21
  paddingHorizontal: 0,
@@ -6,7 +6,7 @@ export default {
6
6
  borderRadius: 4,
7
7
  borderWidth: 2,
8
8
  checked: {
9
- backgroundColor: '#ebebeb',
9
+ backgroundColor: '#888888',
10
10
  icon: {
11
11
  color: '#101010',
12
12
  },
@@ -5,9 +5,9 @@
5
5
  export default {
6
6
  iconButton: {
7
7
  unstyled: {
8
- foregroundColor: '#101010',
9
- foregroundColorActive: '#3f3f3f',
10
- foregroundColorHover: '#3a3837',
8
+ foregroundColor: '#ebebeb',
9
+ foregroundColorActive: '#b2afae',
10
+ foregroundColorHover: '#d3d3d3',
11
11
  },
12
12
  },
13
13
  borderRadius: 8,
@@ -4,7 +4,7 @@
4
4
 
5
5
  export default {
6
6
  color: '#6bb0ff',
7
- colorVisited: '#996cda',
7
+ colorVisited: '#af90de',
8
8
  inverted: {
9
9
  color: '#fcfbf2',
10
10
  colorActive: '#f1efe4',
@@ -4,9 +4,9 @@
4
4
 
5
5
  export default {
6
6
  link: {
7
- color: '#101010',
8
- colorActive: '#3f3f3f',
9
- colorHover: '#3a3837',
7
+ color: '#ebebeb',
8
+ colorActive: '#b2afae',
9
+ colorHover: '#d3d3d3',
10
10
  },
11
11
  color: '#ebebeb',
12
12
  colorActive: '#b2afae',
@@ -7,12 +7,12 @@ export default {
7
7
  borderRadiusNone: 0,
8
8
  borderRadiusRounded: 4,
9
9
  },
10
- borderBottom: '#5c2ca9',
10
+ borderBottom: '#996cda',
11
11
  borderRadius: 6,
12
12
  desktop: {
13
13
  height: 88,
14
14
  },
15
- dividerBorderColor: '#5c2ca9',
15
+ dividerBorderColor: '#996cda',
16
16
  gap: 4,
17
17
  mobile: {
18
18
  height: 64,
@@ -27,7 +27,7 @@ export default {
27
27
  },
28
28
  statusBar: {
29
29
  foregroundColor: '#ffffff',
30
- foregroundColorInverted: '#000000',
31
- notch: '#000000',
30
+ foregroundColorInverted: '#ffffff',
31
+ notch: '#101010',
32
32
  },
33
33
  } as const;
@@ -34,8 +34,8 @@ export default {
34
34
  },
35
35
  },
36
36
  progress: {
37
- dangerColor: '#ff634a',
38
- defaultColor: '#c6b5e2',
39
- successColor: '#36bf7d',
37
+ dangerColor: '#f4412a',
38
+ defaultColor: '#996cda',
39
+ successColor: '#19a660',
40
40
  },
41
41
  } as const;
@@ -5,7 +5,7 @@
5
5
  export default {
6
6
  bar: {
7
7
  complete: {
8
- backgroundColor: '#7a42c8',
8
+ backgroundColor: '#996cda',
9
9
  },
10
10
  height: 2,
11
11
  },
@@ -3,7 +3,7 @@
3
3
  */
4
4
 
5
5
  export default {
6
- defaultFill: '#af90de',
6
+ defaultFill: '#996cda',
7
7
  lg: {
8
8
  size: 40,
9
9
  strokeWidth: 3,
@@ -14,6 +14,8 @@ export default {
14
14
  },
15
15
  headerCell: {
16
16
  borderWidth: 2,
17
+ foregoundColor: '#ebebeb',
18
+ foregoundColorInverted: '#101010',
17
19
  gap: 8,
18
20
  height: 56,
19
21
  paddingHorizontal: 12,
@@ -3,6 +3,7 @@
3
3
  */
4
4
 
5
5
  export default {
6
+ fade: '#2f2d2d00',
6
7
  gap: 6,
7
8
  gapContainer: 4,
8
9
  minWidth: 288,
@@ -4,7 +4,7 @@
4
4
 
5
5
  export default {
6
6
  homeIndicator: {
7
- foregroundColor: '#000000',
7
+ foregroundColor: '#101010',
8
8
  foregroundColorInverted: '#ffffff',
9
9
  },
10
10
  modalStack: {
@@ -26,8 +26,8 @@ export default {
26
26
  borderRadius: 9999,
27
27
  },
28
28
  statusBar: {
29
- foregroundColor: '#000000',
29
+ foregroundColor: '#101010',
30
30
  foregroundColorInverted: '#ffffff',
31
- notch: '#000000',
31
+ notch: '#101010',
32
32
  },
33
33
  } as const;
@@ -14,6 +14,8 @@ export default {
14
14
  },
15
15
  headerCell: {
16
16
  borderWidth: 2,
17
+ foregoundColor: '#101010',
18
+ foregoundColorInverted: '#ffffff',
17
19
  gap: 8,
18
20
  height: 56,
19
21
  paddingHorizontal: 12,
@@ -3,6 +3,7 @@
3
3
  */
4
4
 
5
5
  export default {
6
+ fade: '#ffffff00',
6
7
  gap: 6,
7
8
  gapContainer: 4,
8
9
  minWidth: 288,