UNPKG

@pastel-palette/colors

Version:

Core color definitions package for the UI Color System, featuring OKLCH color space support, TypeScript types, and a kawaii aesthetic.

23 lines (19 loc) 552 B
import type { ApplicationColorName, ColorVariants } from '../../types' import { createColor } from '../../utils' export const highContrastApplicationColors: Record< ApplicationColorName, ColorVariants > = { accent: { light: createColor('oklch(0.45 0.25 237)'), dark: createColor('oklch(0.75 0.2 237)'), }, primary: { light: createColor('oklch(0.4 0.28 260)'), dark: createColor('oklch(0.75 0.22 260)'), }, secondary: { light: createColor('oklch(0.5 0.2 155)'), dark: createColor('oklch(0.77 0.18 155)'), }, }