style: material green

This commit is contained in:
aro 2022-11-20 22:00:26 +01:00
parent d89a9bfaf5
commit 95ae63260d
3 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,6 @@ import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Add
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.unit.dp
import xyz.atnrch.wrench.logger.Logger
import xyz.atnrch.wrench.ui.UIColors
@ -33,7 +32,7 @@ fun AddButton(
) {
Icon(
Icons.Filled.Add,
tint = Color.Green,
tint = UIColors.GREEN,
contentDescription = "Add file...",
modifier = Modifier.size(28.dp)
)

View file

@ -50,7 +50,7 @@ fun BottomRow(
modifier = Modifier.size(28.dp)
) else Icon(
Icons.Filled.PlayArrow,
tint = Color.Green,
tint = UIColors.GREEN,
contentDescription = "Start",
modifier = Modifier.size(28.dp)
)

View file

@ -7,5 +7,6 @@ class UIColors {
val PRIMARY = Color(0xFF424242)
val LIGHT = Color(0xFF6D6D6D)
val STRESS = Color(0xFFF44336)
val GREEN = Color(0xFF388E3C)
}
}