@factorialco/f0-react-native 0.25.0 → 0.26.0

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 (86) hide show
  1. package/lib/module/components/Activity/ActivityItem/index.js +1 -1
  2. package/lib/module/components/Avatars/BaseAvatar/index.js +1 -1
  3. package/lib/module/components/Avatars/DateAvatar/index.js +1 -1
  4. package/lib/module/components/Avatars/EmojiAvatar/index.js +1 -1
  5. package/lib/module/components/Avatars/FileAvatar/index.js +1 -1
  6. package/lib/module/components/Avatars/FileAvatar/utils.js +1 -1
  7. package/lib/module/components/Avatars/IconAvatar/index.js +1 -1
  8. package/lib/module/components/Avatars/ModuleAvatar/index.js +1 -1
  9. package/lib/module/components/Badge/index.js +1 -1
  10. package/lib/module/components/Button/index.js +1 -1
  11. package/lib/module/components/Counter/index.js +1 -1
  12. package/lib/module/components/ExampleComponent.js +1 -1
  13. package/lib/module/components/Icon/README.md +1 -1
  14. package/lib/module/components/Navigation/PageHeader/index.js +1 -1
  15. package/lib/module/components/OneChip/index.js +1 -1
  16. package/lib/module/components/OnePreset/index.js +1 -1
  17. package/lib/module/components/Tags/AlertTab/index.js +1 -1
  18. package/lib/module/components/Tags/BaseTag/index.js +1 -1
  19. package/lib/module/components/Tags/DotTag/index.js +1 -1
  20. package/lib/module/components/Tags/RawTag/index.js +1 -1
  21. package/lib/module/components/experimental/Lists/DataList/ItemContainer.js +1 -1
  22. package/lib/module/components/experimental/Lists/DataList/actions/CopyAction.js +1 -1
  23. package/lib/module/components/experimental/Lists/DataList/actions/GenericAction.js +1 -1
  24. package/lib/module/components/experimental/Lists/DataList/index.js +1 -1
  25. package/lib/module/components/experimental/Lists/DetailsItemsList/index.js +1 -1
  26. package/lib/module/icons/app/QuestionCircle.js +1 -1
  27. package/lib/module/icons/app/QuestionCircle.js.map +1 -1
  28. package/lib/module/icons/app/index.js +1 -1
  29. package/lib/module/icons/app/index.js.map +1 -1
  30. package/lib/module/styles/theme.css +308 -237
  31. package/lib/module/styles/tokens/colors.js +1 -1
  32. package/lib/module/styles/tokens/colors.js.map +1 -1
  33. package/lib/module/ui/avatar.js +1 -1
  34. package/lib/typescript/components/OneChip/index.d.ts +2 -2
  35. package/lib/typescript/icons/app/index.d.ts +1 -1
  36. package/lib/typescript/icons/app/index.d.ts.map +1 -1
  37. package/lib/typescript/styles/tokens/colors.d.ts +2 -2
  38. package/package.json +2 -2
  39. package/src/components/Activity/ActivityItem/__snapshots__/index.spec.tsx.snap +3 -3
  40. package/src/components/Activity/ActivityItem/index.tsx +10 -10
  41. package/src/components/Avatars/BaseAvatar/index.tsx +1 -1
  42. package/src/components/Avatars/CompanyAvatar/__snapshots__/index.spec.tsx.snap +1 -1
  43. package/src/components/Avatars/DateAvatar/__snapshots__/index.spec.tsx.snap +3 -3
  44. package/src/components/Avatars/DateAvatar/index.tsx +3 -3
  45. package/src/components/Avatars/EmojiAvatar/__snapshots__/index.spec.tsx.snap +3 -3
  46. package/src/components/Avatars/EmojiAvatar/index.tsx +1 -1
  47. package/src/components/Avatars/FileAvatar/__snapshots__/index.spec.tsx.snap +26 -26
  48. package/src/components/Avatars/FileAvatar/index.tsx +2 -2
  49. package/src/components/Avatars/FileAvatar/utils.ts +13 -13
  50. package/src/components/Avatars/IconAvatar/__snapshots__/index.spec.tsx.snap +6 -6
  51. package/src/components/Avatars/IconAvatar/index.tsx +2 -2
  52. package/src/components/Avatars/ModuleAvatar/index.tsx +1 -1
  53. package/src/components/Avatars/PersonAvatar/__snapshots__/index.spec.tsx.snap +1 -1
  54. package/src/components/Avatars/TeamAvatar/__snapshots__/index.spec.tsx.snap +1 -1
  55. package/src/components/Badge/index.tsx +5 -5
  56. package/src/components/Button/__snapshots__/index.spec.tsx.snap +22 -22
  57. package/src/components/Button/index.tsx +22 -22
  58. package/src/components/Counter/__snapshots__/index.spec.tsx.snap +14 -14
  59. package/src/components/Counter/index.tsx +6 -6
  60. package/src/components/ExampleComponent.tsx +2 -2
  61. package/src/components/Icon/README.md +1 -1
  62. package/src/components/Navigation/PageHeader/__snapshots__/index.spec.tsx.snap +4 -4
  63. package/src/components/Navigation/PageHeader/index.tsx +1 -1
  64. package/src/components/OneChip/__snapshots__/index.spec.tsx.snap +11 -11
  65. package/src/components/OneChip/index.tsx +5 -5
  66. package/src/components/OnePreset/__snapshots__/index.spec.tsx.snap +8 -8
  67. package/src/components/OnePreset/index.tsx +3 -3
  68. package/src/components/Tags/AlertTab/__snapshots__/index.spec.tsx.snap +9 -9
  69. package/src/components/Tags/AlertTab/index.tsx +9 -9
  70. package/src/components/Tags/BaseTag/index.tsx +2 -2
  71. package/src/components/Tags/DotTag/__snapshots__/index.spec.tsx.snap +38 -38
  72. package/src/components/Tags/DotTag/index.tsx +1 -1
  73. package/src/components/Tags/RawTag/__snapshots__/index.spec.tsx.snap +6 -6
  74. package/src/components/Tags/RawTag/index.tsx +3 -3
  75. package/src/components/experimental/Lists/DataList/ItemContainer.tsx +2 -2
  76. package/src/components/experimental/Lists/DataList/actions/CopyAction.tsx +4 -4
  77. package/src/components/experimental/Lists/DataList/actions/GenericAction.tsx +3 -3
  78. package/src/components/experimental/Lists/DataList/index.tsx +1 -1
  79. package/src/components/experimental/Lists/DetailsItem/__snapshots__/index.spec.tsx.snap +26 -26
  80. package/src/components/experimental/Lists/DetailsItemsList/__snapshots__/index.spec.tsx.snap +26 -26
  81. package/src/components/experimental/Lists/DetailsItemsList/index.tsx +3 -3
  82. package/src/icons/app/QuestionCircle.tsx +1 -1
  83. package/src/icons/app/index.ts +1 -1
  84. package/src/styles/theme.css +308 -237
  85. package/src/styles/tokens/colors.ts +2 -2
  86. package/src/ui/avatar.tsx +1 -1
@@ -7,11 +7,11 @@ import { Icon, type IconType } from "../Icon"
7
7
  import { PressableFeedback } from "../PressableFeedback"
8
8
 
9
9
  export const chipContainerVariants = tv({
10
- base: "flex items-center gap-1 rounded-full border border-solid border-f1-border px-2 py-0.5 grow-0",
10
+ base: "flex items-center gap-1 rounded-full border border-solid border-f0-border px-2 py-0.5 grow-0",
11
11
  variants: {
12
12
  variant: {
13
13
  default: "",
14
- selected: "border-f1-border-selected bg-f1-background-selected-secondary",
14
+ selected: "border-f0-border-selected bg-f0-background-selected-secondary",
15
15
  },
16
16
  },
17
17
  defaultVariants: {
@@ -23,8 +23,8 @@ export const chipTextVariants = tv({
23
23
  base: "font-medium",
24
24
  variants: {
25
25
  variant: {
26
- default: "text-f1-foreground",
27
- selected: "text-f1-foreground-selected",
26
+ default: "text-f0-foreground",
27
+ selected: "text-f0-foreground-selected",
28
28
  },
29
29
  },
30
30
  defaultVariants: {
@@ -74,7 +74,7 @@ export const OneChip = ({
74
74
  e.stopPropagation()
75
75
  onClose()
76
76
  }}
77
- className="-m-1 flex h-6 w-6 cursor-pointer items-center justify-center rounded-full [&_svg]:text-f1-icon-secondary"
77
+ className="-m-1 flex h-6 w-6 cursor-pointer items-center justify-center rounded-full [&_svg]:text-f0-icon-secondary"
78
78
  accessibilityRole="button"
79
79
  accessibilityLabel="Close"
80
80
  >
@@ -23,7 +23,7 @@ exports[`OnePreset Snapshot 1`] = `
23
23
  }
24
24
  }
25
25
  accessible={true}
26
- className="overflow-hidden flex grow-0 flex-row items-center gap-2 rounded border px-2.5 py-1.5 font-medium border-f1-border text-f1-foreground"
26
+ className="overflow-hidden flex grow-0 flex-row items-center gap-2 rounded border px-2.5 py-1.5 font-medium border-f0-border text-f0-foreground"
27
27
  collapsable={false}
28
28
  focusable={true}
29
29
  onBlur={[Function]}
@@ -63,7 +63,7 @@ exports[`OnePreset Snapshot 1`] = `
63
63
  }
64
64
  />
65
65
  <Text
66
- className="whitespace-nowrap text-f1-foreground"
66
+ className="whitespace-nowrap text-f0-foreground"
67
67
  >
68
68
  label
69
69
  </Text>
@@ -94,7 +94,7 @@ exports[`OnePreset Snapshot with number 1`] = `
94
94
  }
95
95
  }
96
96
  accessible={true}
97
- className="overflow-hidden flex grow-0 flex-row items-center gap-2 rounded border px-2.5 py-1.5 font-medium pr-1.5 border-f1-border text-f1-foreground"
97
+ className="overflow-hidden flex grow-0 flex-row items-center gap-2 rounded border px-2.5 py-1.5 font-medium pr-1.5 border-f0-border text-f0-foreground"
98
98
  collapsable={false}
99
99
  focusable={true}
100
100
  onBlur={[Function]}
@@ -134,7 +134,7 @@ exports[`OnePreset Snapshot with number 1`] = `
134
134
  }
135
135
  />
136
136
  <Text
137
- className="whitespace-nowrap text-f1-foreground"
137
+ className="whitespace-nowrap text-f0-foreground"
138
138
  >
139
139
  label
140
140
  </Text>
@@ -142,10 +142,10 @@ exports[`OnePreset Snapshot with number 1`] = `
142
142
  className="flex items-start"
143
143
  >
144
144
  <View
145
- className="flex items-center justify-center rounded-xs grow-0 px-0.5 min-w-5 h-5 bg-f1-background-secondary border border-f1-border"
145
+ className="flex items-center justify-center rounded-xs grow-0 px-0.5 min-w-5 h-5 bg-f0-background-secondary border border-f0-border"
146
146
  >
147
147
  <Text
148
- className="text-center text-sm font-medium tabular-nums whitespace-nowrap text-f1-foreground"
148
+ className="text-center text-sm font-medium tabular-nums whitespace-nowrap text-f0-foreground"
149
149
  >
150
150
  42
151
151
  </Text>
@@ -178,7 +178,7 @@ exports[`OnePreset renders correctly with selected props 1`] = `
178
178
  }
179
179
  }
180
180
  accessible={true}
181
- className="overflow-hidden flex grow-0 flex-row items-center gap-2 rounded border px-2.5 py-1.5 font-medium border-f1-border-selected bg-f1-background-selected-secondary text-f1-foreground-selected"
181
+ className="overflow-hidden flex grow-0 flex-row items-center gap-2 rounded border px-2.5 py-1.5 font-medium border-f0-border-selected bg-f0-background-selected-secondary text-f0-foreground-selected"
182
182
  collapsable={false}
183
183
  focusable={true}
184
184
  onBlur={[Function]}
@@ -218,7 +218,7 @@ exports[`OnePreset renders correctly with selected props 1`] = `
218
218
  }
219
219
  />
220
220
  <Text
221
- className="whitespace-nowrap text-f1-foreground-selected"
221
+ className="whitespace-nowrap text-f0-foreground-selected"
222
222
  >
223
223
  label
224
224
  </Text>
@@ -26,14 +26,14 @@ export const OnePreset = ({
26
26
  "flex grow-0 flex-row items-center gap-2 rounded border px-2.5 py-1.5 font-medium",
27
27
  number !== undefined && number !== null && "pr-1.5",
28
28
  selected
29
- ? "border-f1-border-selected bg-f1-background-selected-secondary text-f1-foreground-selected"
30
- : "border-f1-border text-f1-foreground"
29
+ ? "border-f0-border-selected bg-f0-background-selected-secondary text-f0-foreground-selected"
30
+ : "border-f0-border text-f0-foreground"
31
31
  )}
32
32
  >
33
33
  <Text
34
34
  className={cn(
35
35
  "whitespace-nowrap",
36
- selected ? "text-f1-foreground-selected" : "text-f1-foreground"
36
+ selected ? "text-f0-foreground-selected" : "text-f0-foreground"
37
37
  )}
38
38
  >
39
39
  {label}
@@ -23,7 +23,7 @@ exports[`AlertTag Snapshot Critical level 1`] = `
23
23
  }
24
24
  }
25
25
  accessible={true}
26
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-0.5 bg-f1-background-critical text-f1-foreground-critical"
26
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-0.5 bg-f0-background-critical text-f0-foreground-critical"
27
27
  collapsable={false}
28
28
  focusable={true}
29
29
  onBlur={[Function]}
@@ -53,7 +53,7 @@ exports[`AlertTag Snapshot Critical level 1`] = `
53
53
  aria-hidden={true}
54
54
  bbHeight="100%"
55
55
  bbWidth="100%"
56
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground-critical"
56
+ className="shrink-0 w-5 h-5 stroke-md text-f0-foreground-critical"
57
57
  fill="none"
58
58
  focusable={false}
59
59
  meetOrSlice={0}
@@ -102,7 +102,7 @@ exports[`AlertTag Snapshot Critical level 1`] = `
102
102
  </RNSVGGroup>
103
103
  </RNSVGSvgView>
104
104
  <Text
105
- className="line-clamp-1 text-base font-medium text-f1-foreground-critical"
105
+ className="line-clamp-1 text-base font-medium text-f0-foreground-critical"
106
106
  >
107
107
  critical
108
108
  </Text>
@@ -133,7 +133,7 @@ exports[`AlertTag Snapshot Ingo level 1`] = `
133
133
  }
134
134
  }
135
135
  accessible={true}
136
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-0.5 bg-f1-background-info text-f1-foreground-info"
136
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-0.5 bg-f0-background-info text-f0-foreground-info"
137
137
  collapsable={false}
138
138
  focusable={true}
139
139
  onBlur={[Function]}
@@ -163,7 +163,7 @@ exports[`AlertTag Snapshot Ingo level 1`] = `
163
163
  aria-hidden={true}
164
164
  bbHeight="100%"
165
165
  bbWidth="100%"
166
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground-info"
166
+ className="shrink-0 w-5 h-5 stroke-md text-f0-foreground-info"
167
167
  fill="none"
168
168
  focusable={false}
169
169
  meetOrSlice={0}
@@ -215,7 +215,7 @@ exports[`AlertTag Snapshot Ingo level 1`] = `
215
215
  </RNSVGGroup>
216
216
  </RNSVGSvgView>
217
217
  <Text
218
- className="line-clamp-1 text-base font-medium text-f1-foreground-info"
218
+ className="line-clamp-1 text-base font-medium text-f0-foreground-info"
219
219
  >
220
220
  info
221
221
  </Text>
@@ -246,7 +246,7 @@ exports[`AlertTag Snapshot Warning level 1`] = `
246
246
  }
247
247
  }
248
248
  accessible={true}
249
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-0.5 bg-f1-background-warning text-f1-foreground-warning"
249
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-0.5 bg-f0-background-warning text-f0-foreground-warning"
250
250
  collapsable={false}
251
251
  focusable={true}
252
252
  onBlur={[Function]}
@@ -276,7 +276,7 @@ exports[`AlertTag Snapshot Warning level 1`] = `
276
276
  aria-hidden={true}
277
277
  bbHeight="100%"
278
278
  bbWidth="100%"
279
- className="shrink-0 w-5 h-5 stroke-md text-f1-foreground-warning"
279
+ className="shrink-0 w-5 h-5 stroke-md text-f0-foreground-warning"
280
280
  fill="none"
281
281
  focusable={false}
282
282
  meetOrSlice={0}
@@ -328,7 +328,7 @@ exports[`AlertTag Snapshot Warning level 1`] = `
328
328
  </RNSVGGroup>
329
329
  </RNSVGSvgView>
330
330
  <Text
331
- className="line-clamp-1 text-base font-medium text-f1-foreground-warning"
331
+ className="line-clamp-1 text-base font-medium text-f0-foreground-warning"
332
332
  >
333
333
  warning
334
334
  </Text>
@@ -26,17 +26,17 @@ export const AlertTag = <T extends string>({ text, level }: Props<T>) => {
26
26
  <BaseTag
27
27
  classNameText={cn(
28
28
  {
29
- info: "text-f1-foreground-info",
30
- warning: "text-f1-foreground-warning",
31
- critical: "text-f1-foreground-critical",
29
+ info: "text-f0-foreground-info",
30
+ warning: "text-f0-foreground-warning",
31
+ critical: "text-f0-foreground-critical",
32
32
  }[level]
33
33
  )}
34
34
  classNameContainer={cn(
35
35
  "pl-0.5",
36
36
  {
37
- info: "bg-f1-background-info text-f1-foreground-info",
38
- warning: "bg-f1-background-warning text-f1-foreground-warning",
39
- critical: "bg-f1-background-critical text-f1-foreground-critical",
37
+ info: "bg-f0-background-info text-f0-foreground-info",
38
+ warning: "bg-f0-background-warning text-f0-foreground-warning",
39
+ critical: "bg-f0-background-critical text-f0-foreground-critical",
40
40
  }[level]
41
41
  )}
42
42
  left={
@@ -44,9 +44,9 @@ export const AlertTag = <T extends string>({ text, level }: Props<T>) => {
44
44
  icon={iconMap[level]}
45
45
  className={cn(
46
46
  {
47
- info: "text-f1-foreground-info",
48
- warning: "text-f1-foreground-warning",
49
- critical: "text-f1-foreground-critical",
47
+ info: "text-f0-foreground-info",
48
+ warning: "text-f0-foreground-warning",
49
+ critical: "text-f0-foreground-critical",
50
50
  }[level]
51
51
  )}
52
52
  size="md"
@@ -48,7 +48,7 @@ export const BaseTag = ({
48
48
  {!!text && (
49
49
  <Text
50
50
  className={cn(
51
- "line-clamp-1 text-base font-medium text-f1-foreground",
51
+ "line-clamp-1 text-base font-medium text-f0-foreground",
52
52
  classNameText
53
53
  )}
54
54
  >
@@ -56,7 +56,7 @@ export const BaseTag = ({
56
56
  </Text>
57
57
  )}
58
58
  {additionalAccesibleText && (
59
- <Text className="sr-only text-base font-medium text-f1-foreground">
59
+ <Text className="sr-only text-base font-medium text-f0-foreground">
60
60
  {additionalAccesibleText}
61
61
  </Text>
62
62
  )}
@@ -23,7 +23,7 @@ exports[`RawTag Snapshot 1`] = `
23
23
  }
24
24
  }
25
25
  accessible={true}
26
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
26
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
27
27
  collapsable={false}
28
28
  focusable={true}
29
29
  onBlur={[Function]}
@@ -58,7 +58,7 @@ exports[`RawTag Snapshot 1`] = `
58
58
  }
59
59
  />
60
60
  <Text
61
- className="line-clamp-1 text-base font-medium text-f1-foreground"
61
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
62
62
  >
63
63
  Label
64
64
  </Text>
@@ -89,7 +89,7 @@ exports[`RawTag Snapshot 2`] = `
89
89
  }
90
90
  }
91
91
  accessible={true}
92
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
92
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
93
93
  collapsable={false}
94
94
  focusable={true}
95
95
  onBlur={[Function]}
@@ -124,7 +124,7 @@ exports[`RawTag Snapshot 2`] = `
124
124
  }
125
125
  />
126
126
  <Text
127
- className="line-clamp-1 text-base font-medium text-f1-foreground"
127
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
128
128
  >
129
129
  Label
130
130
  </Text>
@@ -155,7 +155,7 @@ exports[`RawTag Snapshot 3`] = `
155
155
  }
156
156
  }
157
157
  accessible={true}
158
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
158
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
159
159
  collapsable={false}
160
160
  focusable={true}
161
161
  onBlur={[Function]}
@@ -190,7 +190,7 @@ exports[`RawTag Snapshot 3`] = `
190
190
  }
191
191
  />
192
192
  <Text
193
- className="line-clamp-1 text-base font-medium text-f1-foreground"
193
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
194
194
  >
195
195
  Label
196
196
  </Text>
@@ -221,7 +221,7 @@ exports[`RawTag Snapshot 4`] = `
221
221
  }
222
222
  }
223
223
  accessible={true}
224
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
224
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
225
225
  collapsable={false}
226
226
  focusable={true}
227
227
  onBlur={[Function]}
@@ -256,7 +256,7 @@ exports[`RawTag Snapshot 4`] = `
256
256
  }
257
257
  />
258
258
  <Text
259
- className="line-clamp-1 text-base font-medium text-f1-foreground"
259
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
260
260
  >
261
261
  Label
262
262
  </Text>
@@ -287,7 +287,7 @@ exports[`RawTag Snapshot 5`] = `
287
287
  }
288
288
  }
289
289
  accessible={true}
290
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
290
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
291
291
  collapsable={false}
292
292
  focusable={true}
293
293
  onBlur={[Function]}
@@ -322,7 +322,7 @@ exports[`RawTag Snapshot 5`] = `
322
322
  }
323
323
  />
324
324
  <Text
325
- className="line-clamp-1 text-base font-medium text-f1-foreground"
325
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
326
326
  >
327
327
  Label
328
328
  </Text>
@@ -353,7 +353,7 @@ exports[`RawTag Snapshot 6`] = `
353
353
  }
354
354
  }
355
355
  accessible={true}
356
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
356
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
357
357
  collapsable={false}
358
358
  focusable={true}
359
359
  onBlur={[Function]}
@@ -388,7 +388,7 @@ exports[`RawTag Snapshot 6`] = `
388
388
  }
389
389
  />
390
390
  <Text
391
- className="line-clamp-1 text-base font-medium text-f1-foreground"
391
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
392
392
  >
393
393
  Label
394
394
  </Text>
@@ -419,7 +419,7 @@ exports[`RawTag Snapshot 7`] = `
419
419
  }
420
420
  }
421
421
  accessible={true}
422
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
422
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
423
423
  collapsable={false}
424
424
  focusable={true}
425
425
  onBlur={[Function]}
@@ -454,7 +454,7 @@ exports[`RawTag Snapshot 7`] = `
454
454
  }
455
455
  />
456
456
  <Text
457
- className="line-clamp-1 text-base font-medium text-f1-foreground"
457
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
458
458
  >
459
459
  Label
460
460
  </Text>
@@ -485,7 +485,7 @@ exports[`RawTag Snapshot 8`] = `
485
485
  }
486
486
  }
487
487
  accessible={true}
488
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
488
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
489
489
  collapsable={false}
490
490
  focusable={true}
491
491
  onBlur={[Function]}
@@ -520,7 +520,7 @@ exports[`RawTag Snapshot 8`] = `
520
520
  }
521
521
  />
522
522
  <Text
523
- className="line-clamp-1 text-base font-medium text-f1-foreground"
523
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
524
524
  >
525
525
  Label
526
526
  </Text>
@@ -551,7 +551,7 @@ exports[`RawTag Snapshot 9`] = `
551
551
  }
552
552
  }
553
553
  accessible={true}
554
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
554
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
555
555
  collapsable={false}
556
556
  focusable={true}
557
557
  onBlur={[Function]}
@@ -586,7 +586,7 @@ exports[`RawTag Snapshot 9`] = `
586
586
  }
587
587
  />
588
588
  <Text
589
- className="line-clamp-1 text-base font-medium text-f1-foreground"
589
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
590
590
  >
591
591
  Label
592
592
  </Text>
@@ -617,7 +617,7 @@ exports[`RawTag Snapshot 10`] = `
617
617
  }
618
618
  }
619
619
  accessible={true}
620
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
620
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
621
621
  collapsable={false}
622
622
  focusable={true}
623
623
  onBlur={[Function]}
@@ -652,7 +652,7 @@ exports[`RawTag Snapshot 10`] = `
652
652
  }
653
653
  />
654
654
  <Text
655
- className="line-clamp-1 text-base font-medium text-f1-foreground"
655
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
656
656
  >
657
657
  Label
658
658
  </Text>
@@ -683,7 +683,7 @@ exports[`RawTag Snapshot 11`] = `
683
683
  }
684
684
  }
685
685
  accessible={true}
686
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
686
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
687
687
  collapsable={false}
688
688
  focusable={true}
689
689
  onBlur={[Function]}
@@ -718,7 +718,7 @@ exports[`RawTag Snapshot 11`] = `
718
718
  }
719
719
  />
720
720
  <Text
721
- className="line-clamp-1 text-base font-medium text-f1-foreground"
721
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
722
722
  >
723
723
  Label
724
724
  </Text>
@@ -749,7 +749,7 @@ exports[`RawTag Snapshot 12`] = `
749
749
  }
750
750
  }
751
751
  accessible={true}
752
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
752
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
753
753
  collapsable={false}
754
754
  focusable={true}
755
755
  onBlur={[Function]}
@@ -784,7 +784,7 @@ exports[`RawTag Snapshot 12`] = `
784
784
  }
785
785
  />
786
786
  <Text
787
- className="line-clamp-1 text-base font-medium text-f1-foreground"
787
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
788
788
  >
789
789
  Label
790
790
  </Text>
@@ -815,7 +815,7 @@ exports[`RawTag Snapshot 13`] = `
815
815
  }
816
816
  }
817
817
  accessible={true}
818
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
818
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
819
819
  collapsable={false}
820
820
  focusable={true}
821
821
  onBlur={[Function]}
@@ -850,7 +850,7 @@ exports[`RawTag Snapshot 13`] = `
850
850
  }
851
851
  />
852
852
  <Text
853
- className="line-clamp-1 text-base font-medium text-f1-foreground"
853
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
854
854
  >
855
855
  Label
856
856
  </Text>
@@ -881,7 +881,7 @@ exports[`RawTag Snapshot 14`] = `
881
881
  }
882
882
  }
883
883
  accessible={true}
884
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
884
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
885
885
  collapsable={false}
886
886
  focusable={true}
887
887
  onBlur={[Function]}
@@ -916,7 +916,7 @@ exports[`RawTag Snapshot 14`] = `
916
916
  }
917
917
  />
918
918
  <Text
919
- className="line-clamp-1 text-base font-medium text-f1-foreground"
919
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
920
920
  >
921
921
  Label
922
922
  </Text>
@@ -947,7 +947,7 @@ exports[`RawTag Snapshot 15`] = `
947
947
  }
948
948
  }
949
949
  accessible={true}
950
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
950
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
951
951
  collapsable={false}
952
952
  focusable={true}
953
953
  onBlur={[Function]}
@@ -982,7 +982,7 @@ exports[`RawTag Snapshot 15`] = `
982
982
  }
983
983
  />
984
984
  <Text
985
- className="line-clamp-1 text-base font-medium text-f1-foreground"
985
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
986
986
  >
987
987
  Label
988
988
  </Text>
@@ -1013,7 +1013,7 @@ exports[`RawTag Snapshot 16`] = `
1013
1013
  }
1014
1014
  }
1015
1015
  accessible={true}
1016
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
1016
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
1017
1017
  collapsable={false}
1018
1018
  focusable={true}
1019
1019
  onBlur={[Function]}
@@ -1048,7 +1048,7 @@ exports[`RawTag Snapshot 16`] = `
1048
1048
  }
1049
1049
  />
1050
1050
  <Text
1051
- className="line-clamp-1 text-base font-medium text-f1-foreground"
1051
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
1052
1052
  >
1053
1053
  Label
1054
1054
  </Text>
@@ -1079,7 +1079,7 @@ exports[`RawTag Snapshot 17`] = `
1079
1079
  }
1080
1080
  }
1081
1081
  accessible={true}
1082
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
1082
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
1083
1083
  collapsable={false}
1084
1084
  focusable={true}
1085
1085
  onBlur={[Function]}
@@ -1114,7 +1114,7 @@ exports[`RawTag Snapshot 17`] = `
1114
1114
  }
1115
1115
  />
1116
1116
  <Text
1117
- className="line-clamp-1 text-base font-medium text-f1-foreground"
1117
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
1118
1118
  >
1119
1119
  Label
1120
1120
  </Text>
@@ -1145,7 +1145,7 @@ exports[`RawTag Snapshot 18`] = `
1145
1145
  }
1146
1146
  }
1147
1147
  accessible={true}
1148
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
1148
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
1149
1149
  collapsable={false}
1150
1150
  focusable={true}
1151
1151
  onBlur={[Function]}
@@ -1180,7 +1180,7 @@ exports[`RawTag Snapshot 18`] = `
1180
1180
  }
1181
1181
  />
1182
1182
  <Text
1183
- className="line-clamp-1 text-base font-medium text-f1-foreground"
1183
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
1184
1184
  >
1185
1185
  Label
1186
1186
  </Text>
@@ -1211,7 +1211,7 @@ exports[`RawTag Snapshot 19`] = `
1211
1211
  }
1212
1212
  }
1213
1213
  accessible={true}
1214
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
1214
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
1215
1215
  collapsable={false}
1216
1216
  focusable={true}
1217
1217
  onBlur={[Function]}
@@ -1246,7 +1246,7 @@ exports[`RawTag Snapshot 19`] = `
1246
1246
  }
1247
1247
  />
1248
1248
  <Text
1249
- className="line-clamp-1 text-base font-medium text-f1-foreground"
1249
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
1250
1250
  >
1251
1251
  Label
1252
1252
  </Text>
@@ -37,7 +37,7 @@ export const DotTag = ({ text, ...props }: DotTagProps) => {
37
37
 
38
38
  return (
39
39
  <BaseTag
40
- classNameContainer="border border-solid border-f1-border-secondary"
40
+ classNameContainer="border border-solid border-f0-border-secondary"
41
41
  left={
42
42
  <View
43
43
  className="m-1 aspect-square w-2 rounded-full"
@@ -23,7 +23,7 @@ exports[`RawTag Snapshot 1`] = `
23
23
  }
24
24
  }
25
25
  accessible={true}
26
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-2 border border-solid border-f1-border-secondary"
26
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-2 border border-solid border-f0-border-secondary"
27
27
  collapsable={false}
28
28
  focusable={true}
29
29
  onBlur={[Function]}
@@ -49,7 +49,7 @@ exports[`RawTag Snapshot 1`] = `
49
49
  }
50
50
  >
51
51
  <Text
52
- className="line-clamp-1 text-base font-medium text-f1-foreground"
52
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
53
53
  >
54
54
  test
55
55
  </Text>
@@ -106,7 +106,7 @@ exports[`RawTag Snapshot noBorder 1`] = `
106
106
  }
107
107
  >
108
108
  <Text
109
- className="line-clamp-1 text-base font-medium text-f1-foreground"
109
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
110
110
  >
111
111
  test
112
112
  </Text>
@@ -137,7 +137,7 @@ exports[`RawTag Snapshot with icon 1`] = `
137
137
  }
138
138
  }
139
139
  accessible={true}
140
- className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f1-border-secondary"
140
+ className="overflow-hidden flex flex-row items-center justify-start gap-0.5 rounded-full py-0.5 pr-2 pl-1 border border-solid border-f0-border-secondary"
141
141
  collapsable={false}
142
142
  focusable={true}
143
143
  onBlur={[Function]}
@@ -167,7 +167,7 @@ exports[`RawTag Snapshot with icon 1`] = `
167
167
  aria-hidden={true}
168
168
  bbHeight="100%"
169
169
  bbWidth="100%"
170
- className="shrink-0 w-4 h-4 stroke-sm text-f1-icon"
170
+ className="shrink-0 w-4 h-4 stroke-sm text-f0-icon"
171
171
  fill="none"
172
172
  focusable={false}
173
173
  meetOrSlice={0}
@@ -243,7 +243,7 @@ exports[`RawTag Snapshot with icon 1`] = `
243
243
  </RNSVGGroup>
244
244
  </RNSVGSvgView>
245
245
  <Text
246
- className="line-clamp-1 text-base font-medium text-f1-foreground"
246
+ className="line-clamp-1 text-base font-medium text-f0-foreground"
247
247
  >
248
248
  test
249
249
  </Text>
@@ -23,13 +23,13 @@ export const RawTag = ({
23
23
  return (
24
24
  <BaseTag
25
25
  classNameContainer={cn(
26
- !noBorder && "border border-solid border-f1-border-secondary",
26
+ !noBorder && "border border-solid border-f0-border-secondary",
27
27
  className
28
28
  )}
29
- classNameText="text-f1-foreground"
29
+ classNameText="text-f0-foreground"
30
30
  left={
31
31
  icon ? (
32
- <Icon icon={icon} size="sm" className="text-f1-icon" aria-hidden />
32
+ <Icon icon={icon} size="sm" className="text-f0-icon" aria-hidden />
33
33
  ) : null
34
34
  }
35
35
  text={text}