about summary refs log tree commit diff
path: root/src/view/com/modals/EditProfile.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-12-20 14:29:50 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-12-20 14:29:50 -0600
commit0a2c3e6b519b8dde07e63f2f185a7591066f9ffd (patch)
tree83c12f69293cd1b2ec276079af655345c4dea507 /src/view/com/modals/EditProfile.tsx
parentabcfc11fe0e9f92fa2c63d7186270f4116ee72a6 (diff)
downloadvoidsky-0a2c3e6b519b8dde07e63f2f185a7591066f9ffd.tar.zst
Fixes to text input colors on android
Diffstat (limited to 'src/view/com/modals/EditProfile.tsx')
-rw-r--r--src/view/com/modals/EditProfile.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/view/com/modals/EditProfile.tsx b/src/view/com/modals/EditProfile.tsx
index 8d9f2e9fe..1ebd4e767 100644
--- a/src/view/com/modals/EditProfile.tsx
+++ b/src/view/com/modals/EditProfile.tsx
@@ -119,6 +119,7 @@ export function Component({
           <BottomSheetTextInput
             style={styles.textInput}
             placeholder="e.g. Alice Roberts"
+            placeholderTextColor={colors.gray4}
             value={displayName}
             onChangeText={v => setDisplayName(enforceLen(v, MAX_DISPLAY_NAME))}
           />
@@ -128,6 +129,7 @@ export function Component({
           <BottomSheetTextInput
             style={[styles.textArea]}
             placeholder="e.g. Artist, dog-lover, and memelord."
+            placeholderTextColor={colors.gray4}
             multiline
             value={description}
             onChangeText={v => setDescription(enforceLen(v, MAX_DESCRIPTION))}
@@ -181,6 +183,7 @@ const styles = StyleSheet.create({
     paddingHorizontal: 14,
     paddingVertical: 10,
     fontSize: 16,
+    color: colors.black,
   },
   textArea: {
     borderWidth: 1,
@@ -189,6 +192,7 @@ const styles = StyleSheet.create({
     paddingHorizontal: 12,
     paddingTop: 10,
     fontSize: 16,
+    color: colors.black,
     height: 100,
     textAlignVertical: 'top',
   },