Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: design review fixes #63

Merged
merged 1 commit into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ fun LetroOutlinedTextField(
singleLine = singleLine,
isError = isError,
enabled = isEnabled,
colors = TextFieldDefaults.colors(
errorIndicatorColor = MaterialTheme.colorScheme.error,
),
)
if (content != null) {
content()
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/tech/relaycorp/letro/ui/theme/Color.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ val Secondary1 = Color(0xFF00034F)
val Secondary2 = Color(0xFF64B5FF)
val Secondary5 = Color(0xFFD1E4FF)
val Error1 = Color(0xFFBA1A1A)
val Error2 = Color(0xFFFFC4C4)
val Error2 = Color(0xFFFFB9B9)
val Neutral2 = Color(0xFF0C1B44)
val Neutral3 = Color(0xFF5A6688)
val Neutral4 = Color(0xFF6D7B9E)
Expand Down
5 changes: 2 additions & 3 deletions app/src/main/java/tech/relaycorp/letro/ui/theme/Type.kt
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,8 @@ val Typography.LabelLargeProminent: TextStyle
get() = TextStyle(
fontFamily = Inter,
fontWeight = FontWeight.SemiBold,
fontSize = 16.sp,
lineHeight = 20.sp,
letterSpacing = 0.1.sp,
fontSize = 15.sp,
lineHeight = 21.sp,
)

val Typography.LabelMediumProminent: TextStyle
Expand Down
Loading