fix: badge text styling on hover in settings

This commit is contained in:
2026-01-26 14:06:45 -06:00
parent ac8d40112e
commit 1ae82fc4e4

View File

@@ -6,7 +6,7 @@ export const DEFAULT_MEMBER_TIERS = [
minDays: 0,
maxDays: 364, // < 1 year
icon: 'FaSeedling',
badgeClass: 'bg-[var(--lavender-300)] text-[var(--purple-ink)]',
badgeClass: 'bg-[var(--lavender-300)] text-[var(--purple-ink)] hover:text-white',
},
{
id: 'silver',
@@ -14,7 +14,7 @@ export const DEFAULT_MEMBER_TIERS = [
minDays: 365,
maxDays: 729,
icon: 'FaMedal',
badgeClass: 'bg-slate-200 text-slate-900',
badgeClass: 'bg-slate-200 text-slate-900 hover:text-white',
},
{
id: 'gold',
@@ -22,6 +22,6 @@ export const DEFAULT_MEMBER_TIERS = [
minDays: 730,
maxDays: null, // open-ended
icon: 'FaCrown',
badgeClass: 'bg-amber-200 text-amber-900',
badgeClass: 'bg-amber-200 text-amber-900 hover:text-white',
},
];