You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
981 B
CSS
35 lines
981 B
CSS
:root {
|
|
/* 主题色 */
|
|
--primary-color: #00d9ff;
|
|
--primary-light: #66b1ff;
|
|
--primary-dark: #0088cc;
|
|
|
|
/* 背景色 */
|
|
--bg-gradient-primary: linear-gradient(135deg, #001f3f 0%, #003366 100%);
|
|
--bg-gradient-secondary: linear-gradient(45deg, #0d47a1, #1976d2);
|
|
--bg-white: #ffffff;
|
|
--bg-light: #f5f7fa;
|
|
--bg-card: rgba(255, 255, 255, 0.1);
|
|
|
|
/* 文字颜色 */
|
|
--text-primary: #ffffff;
|
|
--text-secondary: rgba(255, 255, 255, 0.8);
|
|
--text-muted: rgba(255, 255, 255, 0.7);
|
|
--text-dark: #606266;
|
|
|
|
/* 边框和阴影 */
|
|
--border-color: rgba(255, 255, 255, 0.2);
|
|
--shadow-sm: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
|
|
--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.25);
|
|
|
|
/* 状态颜色 */
|
|
--success-color: #67c23a;
|
|
--warning-color: #e6a23c;
|
|
--danger-color: #f56c6c;
|
|
--info-color: #909399;
|
|
|
|
/* 特效 */
|
|
--glow-primary: 0 0 10px rgba(0, 217, 255, 0.5);
|
|
--glow-secondary: 0 0 5px rgba(0, 217, 255, 0.3);
|
|
} |