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

@@ -41,7 +41,7 @@ export type BuiltinSection = (typeof BUILTIN_SECTIONS)[number];
export const STYLE_OPTIONS = [
{ value: 'default' as const, colorClass: 'bg-dark-500' },
{ value: 'primary' as const, colorClass: 'bg-blue-500' },
{ value: 'primary' as const, colorClass: 'bg-accent-500' },
{ value: 'success' as const, colorClass: 'bg-success-500' },
{ value: 'danger' as const, colorClass: 'bg-error-500' },
];