Undid favorite/blacklisted tag color-coded stylings.
All checks were successful
ci / build-test (push) Successful in 2m44s
ci / publish-image (push) Successful in 1m32s

This commit is contained in:
2026-03-18 00:27:43 -04:00
parent ce9fbe491d
commit 1c016ac62e
5 changed files with 30 additions and 10 deletions

View File

@@ -23,7 +23,7 @@
if (Tag.IsBlacklisted)
{
return ColorVarient.Pink;
return ColorVarient.Red;
}
return ColorVarient.Secondary;

View File

@@ -37,15 +37,15 @@
private ColorVarient GetColorVarient()
{
if (Tag.IsFavorite)
{
return ColorVarient.Mint;
}
// if (Tag.IsFavorite)
// {
// return ColorVarient.Mint;
// }
if (Tag.IsFavorite)
{
return ColorVarient.Orange;
}
// if (Tag.IsBlacklisted)
// {
// return ColorVarient.Red;
// }
return ColorVarient.Primary;
}