8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
export default interface IColor {
|
|
label: string | null
|
|
value: string | null
|
|
darkValue?: string | null
|
|
lightValue?: string | null
|
|
constrastColor?: string | null
|
|
}
|