Files
waveform-analysis/src/components/core/constants.ts
李启源 ea832229da
Some checks failed
CI / verify (push) Has been cancelled
first commit
2026-07-20 10:21:30 +08:00

24 lines
356 B
TypeScript

/**
* 核心常量定义
*/
/** 通道颜色 */
export const channelColors = [
'#0960bd',
'#ff7f0e',
'#389e0d',
'#cf1322',
'#531dab',
'#08979c',
'#c41d7f',
'#434343',
'#7cb305',
'#1d39c4',
]
/** 图表边距 */
export const margin = { top: 18, right: 24, bottom: 52, left: 64 }
/** 最小高度 */
export const minimumHeight = 180