···9090 <View style={[styles.container, pal.view]} testID="addAppPasswordsModal">
9191 <View>
9292 {!appPassword ? (
9393- <Text type="lg">
9393+ <Text type="lg" style={[pal.text]}>
9494 Please enter a unique name for this App Password. We have generated
9595 a random name for you.
9696 </Text>
9797 ) : (
9898- <Text type="lg">
9999- <Text type="lg-bold">Here is your app password.</Text> Use this to
100100- sign into the other app along with your handle.
9898+ <Text type="lg" style={[pal.text]}>
9999+ <Text type="lg-bold" style={[pal.text]}>
100100+ Here is your app password.
101101+ </Text>{' '}
102102+ Use this to sign into the other app along with your handle.
101103 </Text>
102104 )}
103105 {!appPassword ? (
···126128 <TouchableOpacity
127129 style={[pal.border, styles.passwordContainer, pal.btn]}
128130 onPress={onCopy}>
129129- <Text type="2xl-bold">{appPassword}</Text>
131131+ <Text type="2xl-bold" style={[pal.text]}>
132132+ {appPassword}
133133+ </Text>
130134 {wasCopied ? (
131135 <Text style={[pal.textLight]}>Copied</Text>
132136 ) : (
···162166 container: {
163167 flex: 1,
164168 paddingBottom: isDesktopWeb ? 0 : 50,
165165- marginHorizontal: 16,
169169+ paddingHorizontal: 16,
166170 },
167171 textInputWrapper: {
168172 borderRadius: 8,