update at 2026-01-22 19:50:23

This commit is contained in:
douboer
2026-01-22 19:50:23 +08:00
parent a930a99a50
commit a3e77045ac
8 changed files with 118 additions and 27 deletions

View File

@@ -188,7 +188,10 @@ function splitMultiTextUnits(
export interface LuopanConfig {
name: string;
description?: string;
background: string; // 全局背景色
background: string; // 全局背景色(支持主题色)
strokeWidth?: number; // 扇区边界线宽度
strokeColor?: string; // 扇区边界线颜色(支持主题色)
strokeOpacity?: number; // 扇区边界线透明度
theme: ThemeConfig;
layers: LayerConfig[]; // 扇区层 + 中心图标层 + 刻度环层
}