refactor(theming): replace green-* / emerald-* with success-* tokens

Sweep: text/bg/border/ring/from/to/via/fill/stroke/shadow-{green,emerald}-N → success-N
(all were semantic success/active/paid states).
This commit is contained in:
c0mrade
2026-05-26 11:09:28 +03:00
parent 9c5e38b594
commit cb7693e3ff
5 changed files with 10 additions and 10 deletions

View File

@@ -323,7 +323,7 @@ export default function TvQuickConnect({ subscriptionUrl, isLight }: Props) {
{toast && (
<div
className={`fixed bottom-6 left-1/2 z-50 -translate-x-1/2 rounded-xl px-5 py-3 text-sm font-medium shadow-lg transition-all ${
toast.type === 'success' ? 'bg-emerald-500/90 text-white' : 'bg-error-500/90 text-white'
toast.type === 'success' ? 'bg-success-500/90 text-white' : 'bg-error-500/90 text-white'
}`}
>
{toast.text}