mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-10 09:39:15 +08:00
18 lines
380 B
TypeScript
18 lines
380 B
TypeScript
import type { ColorNeutralMapToken } from '../interface'
|
|
|
|
export interface ColorMap {
|
|
1: string
|
|
2: string
|
|
3: string
|
|
4: string
|
|
5: string
|
|
6: string
|
|
7: string
|
|
8: string
|
|
9: string
|
|
10: string
|
|
}
|
|
|
|
export type GenerateColorMap = (baseColor: string) => ColorMap
|
|
export type GenerateNeutralColorMap = (bgBaseColor: string, textBaseColor: string) => ColorNeutralMapToken
|