/* SRDB WebUI - Modern Design with Lit */ :root { /* 主色调 - 优雅的紫蓝色 */ --primary: #6366f1; --primary-dark: #4f46e5; --primary-light: #818cf8; --primary-bg: rgba(99, 102, 241, 0.1); /* 背景色 */ --bg-main: #0f0f1a; --bg-surface: #1a1a2e; --bg-elevated: #222236; --bg-hover: #2a2a3e; /* 文字颜色 */ --text-primary: #ffffff; --text-secondary: #a0a0b0; --text-tertiary: #6b6b7b; /* 边框和分隔线 */ --border-color: rgba(255, 255, 255, 0.1); --border-hover: rgba(255, 255, 255, 0.2); /* 状态颜色 */ --success: #10b981; --warning: #f59e0b; --danger: #ef4444; --info: #3b82f6; /* 阴影 */ --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3); --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3); /* 圆角 */ --radius-sm: 6px; --radius-md: 8px; --radius-lg: 12px; --radius-xl: 16px; /* 过渡 */ --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); } * { box-sizing: border-box; margin: 0; padding: 0; } :root { /* 主题过渡动画 */ transition: background-color 0.3s ease, color 0.3s ease; } body { font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--bg-main); color: var(--text-primary); line-height: 1.6; font-size: 14px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0; padding: 0; height: 100vh; overflow: hidden; transition: background-color 0.3s ease, color 0.3s ease; }