aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/color.ts
blob: b57e93bc3fe43984ff3fc9e5b9301fb89caca499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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[];
}>;