theme-provider #20

Merged
andika merged 12 commits from theme-provider into dev 2026-01-27 08:41:49 +00:00
Showing only changes of commit 1ae82fc4e4 - Show all commits

View File

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