about summary refs log tree commit diff
path: root/src/components/forms/TextField.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-02-09 11:52:32 -0600
committerGitHub <noreply@github.com>2024-02-09 09:52:32 -0800
commitd6235453c9b5f297b95edd58864fe26268239318 (patch)
treee33103843603eda398b27231eada8e0c445509f2 /src/components/forms/TextField.tsx
parent43b447e5f4345bd6c3a6957cb5aa1587324799e8 (diff)
downloadvoidsky-d6235453c9b5f297b95edd58864fe26268239318.tar.zst
Design system tweaks (#2822)
* Tweak palette, theme naming, update usages

* Update Typography, replace the few usages
Diffstat (limited to 'src/components/forms/TextField.tsx')
-rw-r--r--src/components/forms/TextField.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx
index 67515049c..70f900bb9 100644
--- a/src/components/forms/TextField.tsx
+++ b/src/components/forms/TextField.tsx
@@ -241,7 +241,8 @@ export const Input = createInput(TextInput)
 export function Label({children}: React.PropsWithChildren<{}>) {
   const t = useTheme()
   return (
-    <Text style={[a.text_sm, a.font_bold, t.atoms.text_contrast_600, a.mb_sm]}>
+    <Text
+      style={[a.text_sm, a.font_bold, t.atoms.text_contrast_medium, a.mb_sm]}>
       {children}
     </Text>
   )
@@ -315,7 +316,7 @@ export function Suffix({
         a.z_20,
         a.pr_sm,
         a.text_md,
-        t.atoms.text_contrast_400,
+        t.atoms.text_contrast_medium,
         {
           pointerEvents: 'none',
         },