fix patron badge color

This commit is contained in:
2026-01-11 21:19:44 +00:00
parent 2b13426c8c
commit dd373d6e84

View File

@ -33,7 +33,7 @@ const Badge: React.FC<IBadge> = ({ title, slug, color }) => {
'bg-gray-800 text-gray-900': !isDark, 'bg-gray-800 text-gray-900': !isDark,
} }
: { : {
'bg-fuchsia-700 text-white': slug === 'patron', 'bg-gradient-to-r from-blue-900 to-purple-500 text-white': slug === 'patron',
'bg-orange-700 text-white': slug === 'admin', 'bg-orange-700 text-white': slug === 'admin',
'bg-cyan-600 text-white': slug === 'moderator', 'bg-cyan-600 text-white': slug === 'moderator',
'bg-gray-100 dark:bg-gray-800 text-gray-900 dark:text-gray-100': 'bg-gray-100 dark:bg-gray-800 text-gray-900 dark:text-gray-100':