import type { LocaleEntry } from './definitions'; /** * The possible definitions related to colors. */ export type ColorDefinition = LocaleEntry<{ /** * Human-readable color names. */ human: string[]; /** * Color space names. */ space: string[]; }>;