Fix character counter color in dark mode

This commit is contained in:
Paul Frazee
2023-01-31 10:20:31 -06:00
parent 0d8a7cd816
commit 26a4f85fda
+2 -1
View File
@@ -273,7 +273,8 @@ export const ComposePost = observer(function ComposePost({
}
const canPost = text.length <= MAX_TEXT_LENGTH
const progressColor = text.length > DANGER_TEXT_LENGTH ? '#e60000' : undefined
const progressColor =
text.length > DANGER_TEXT_LENGTH ? '#e60000' : pal.colors.text
const selectTextInputLayout =
selectedPhotos.length !== 0