/**
 * 全局主题配置
 * 包含动态主题变量，由config.php配置生成
 */

:root {
    --bs-primary: #28a745;
    --bs-primary-rgb: 40, 167, 69;
    --bs-success: #28a745;
    --bs-info: #17a2b8;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --border-radius-custom: 0.9375rem;
    --border-radius-input: 0.625rem;
    --border-radius-button: 0.625rem;
}

/* 暗色主题变量 */
[data-bs-theme="dark"] {
    --bs-primary: #28a745;
    --bs-primary-rgb: 40, 167, 69;
    --bs-success: #28a745;
    --bs-info: #17a2b8;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
}