Skip to content

Commit

Permalink
Merge pull request #183 from tarkalabs/sheshu/feature/color
Browse files Browse the repository at this point in the history
2 new colors added in Color.kt for Downtime
  • Loading branch information
sheshadhreens authored Feb 6, 2024
2 parents bec9e20 + df1afe7 commit 1b54acd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tarkaui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ publishing {
run {
groupId = "com.tarkalabs"
artifactId = getLibraryArtifactId()
version = "1.0.4"
version = "1.0.5"
artifact("$buildDir/outputs/aar/${getLibraryArtifactId()}-release.aar")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ open class TUIColors(
val inputTextDim: Color,
val surfaceHover: Color,
val primaryAltHover:Color,
val accent: Color,
val onAccent: Color,
)

val LocalTUIColors = staticCompositionLocalOf {
Expand Down Expand Up @@ -95,6 +97,8 @@ val defaultLightColors = TUIColors(
inputTextDim = Color(0xFF1A1C1F),
surfaceHover = Color(0xFFF0F2F5),
primaryAltHover = Color(0xFFC4D7F3),
accent = Color(0xFFE8DEED),
onAccent = Color(0xFF5F008F)
)

val defaultDarkColors = TUIColors(
Expand Down Expand Up @@ -139,5 +143,7 @@ val defaultDarkColors = TUIColors(
inputTextDim = Color(0xFFFCFCFD),
surfaceHover = Color(0xFF29313D),
primaryAltHover = Color(0xFF324767),
accent = Color(0xFF32203C),
onAccent = Color(0xFFDD99FF)
)

0 comments on commit 1b54acd

Please sign in to comment.