Custom color for compare view
parent
740f4de441
commit
fbf8379f4a
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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/"
|
||||||
|
|
Loading…
Reference in New Issue