Skip to content

Commit

Permalink
made oled theme darker
Browse files Browse the repository at this point in the history
  • Loading branch information
yamin8000 committed Dec 31, 2023
1 parent 1125024 commit 45eb71d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ android {
applicationId "io.github.yamin8000.owl"
minSdk 21
targetSdk 34
versionCode 34
versionName "1.5.8"
versionCode 35
versionName "1.5.9"
vectorDrawables {
useSupportLibrary true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,5 +159,5 @@ fun PreviewTheme(
}

private fun Color.darken(): Color {
return copy(alpha, red / 2, green / 2, blue / 2)
return copy(alpha, red / 10, green / 10, blue / 10)
}

0 comments on commit 45eb71d

Please sign in to comment.