Custom color for compare view

main
CAPEL Maxime 2024-01-15 10:56:36 +01:00
parent 740f4de441
commit fbf8379f4a
2 changed files with 6 additions and 4 deletions

View File

@ -49,9 +49,9 @@ fun compareResults(
// Espace entre les éléments // Espace entre les éléments
horizontalArrangement = Arrangement.spacedBy(16.dp) horizontalArrangement = Arrangement.spacedBy(16.dp)
) { ) {
LegendItem(color = Color.Green, label = "Mot dans le glossaire et dans le code") LegendItem(color = customGreenColor, label = "Mot dans le glossaire et dans le code")
LegendItem(color = Color.White, label = "Mot seulement dans le glossaire") LegendItem(color = Color.White, label = "Mot seulement dans le glossaire")
LegendItem(color = Color.Yellow, label = "Mot seulement dans le code") LegendItem(color = customYellowColor, label = "Mot seulement dans le code")
} }
@ -174,8 +174,8 @@ fun commonWordsDataRow(
val isCommon = word in codeWords && word in glossaryWordsSet val isCommon = word in codeWords && word in glossaryWordsSet
val backgroundColor = when { val backgroundColor = when {
isCommon -> Color.Green // Couleur pour les mots communs isCommon -> customGreenColor // Couleur pour les mots communs
word in codeWords -> Color.Yellow // Couleur pour les mots du code word in codeWords -> customYellowColor // Couleur pour les mots du code
word in glossaryWordsSet -> Color.White // Couleur pour les mots du glossaire word in glossaryWordsSet -> Color.White // Couleur pour les mots du glossaire
else -> Color.White else -> Color.White
} }

View File

@ -17,6 +17,8 @@ import java.io.File
val customRedColor = Color(0xFFB70D1B) val customRedColor = Color(0xFFB70D1B)
val customGreenColor = Color(0xFF33b249)
val customYellowColor = Color(0xFFffbd03)
val currentPage = mutableStateOf("accueil") val currentPage = mutableStateOf("accueil")
const val glossaryPath : String = "src/main/resources/projects/" const val glossaryPath : String = "src/main/resources/projects/"