import {ColorHueKey, ColorTintKey} from './types'

/**
 * The color hues provided by `@sanity/color`.
 * @public
 */
export const COLOR_HUES: ColorHueKey[] = [
  'gray',
  'blue',
  'purple',
  'magenta',
  'red',
  'orange',
  'yellow',
  'green',
  'cyan',
]

/**
 * The color tints provided by `@sanity/color`
 * @public
 */
export const COLOR_TINTS: ColorTintKey[] = [
  '50',
  '100',
  '200',
  '300',
  '400',
  '500',
  '600',
  '700',
  '800',
  '900',
  '950',
]
