/*!
 * SLUR CSS
 * Copyright (c) 2016–2026 SLUR
 * Licensed under the MIT License
 */
/* tokens.css
 * Design tokens only.
 * Define in :root and :root[data-theme] only (@media allowed).
 *
 * 디자인 토큰 전용 파일입니다.
 * 토큰 정의는 :root 및 :root[data-theme]에서만 허용합니다. (@media 사용 가능)
 */
:root {
	/* Action / Brand */
	--color-primary: #5454D4;
	--color-secondary: #64748b;
	/* State */
	--color-state-error: #ff5252;
	--color-state-warning: #ffcc01;
	--color-state-success: #07c271;
	/* Text */
	--color-text-primary: #fff;
	--color-text-secondary: #d1d5db;
	--color-text-muted: #9ca3af;
	/* Background */
	--color-bg-default: #19191B;
	--color-bg-surface: #f9fafb;
	--color-bg-elevated: #ffffff;
	/* Border */
	--color-border-default: #e5e7eb;
	/* Focus / Interaction */
	--focus-ring-color: rgba(37, 99, 235, 0.4);
	--focus-ring-shadow: 0 0 0 3px var(--focus-ring-color);
	/* Font Size */
	--font-size-base: 1.4rem;
	--font-size-sm: 1.2rem;
}