(color: string)
| 46 | * 应用自定义主题色到 CSS 变量。 |
| 47 | */ |
| 48 | export function applyCustomColor(color: string): void { |
| 49 | const adjustedColor = adjustColorForTheme(color) |
| 50 | document.documentElement.style.setProperty('--primary-color', adjustedColor) |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * 应用主题色类名;当主题色为 custom 时同步写入自定义色变量。 |
no test coverage detected