refactor(theming): blue-* → accent-* in admin/internal usages

Sweep non-brand blue across admin pages, AnalyticsTab, TvQuickConnect, and menuLayout
style picker to accent tokens. Telegram-brand blue kept in BroadcastPreview (TG chat
mockup), the blocking screens (TG channel/bot CTAs), and the SuccessNotificationModal hero.
This commit is contained in:
c0mrade
2026-05-26 11:24:28 +03:00
parent 3df2134cba
commit 9bb1c2339a
7 changed files with 12 additions and 12 deletions

View File

@@ -76,7 +76,7 @@ const EmailIcon = () => (
function ChannelBadge({ channel }: { channel?: BroadcastChannel }) {
if (!channel || channel === 'telegram') {
return (
<span className="flex items-center gap-1 rounded-full bg-blue-500/20 px-2 py-0.5 text-xs text-blue-400">
<span className="flex items-center gap-1 rounded-full bg-accent-500/20 px-2 py-0.5 text-xs text-accent-400">
<TelegramIcon />
<span className="hidden sm:inline">Telegram</span>
</span>