Allow passing a chroma color as a start/mid/end color

This commit is contained in:
Nate Butler 2023-02-11 21:10:47 -05:00
parent 0acb820f04
commit 187fac1579
3 changed files with 11 additions and 6 deletions

View file

@ -38,9 +38,9 @@ export function generateColors(props: ColorProps, inverted: boolean) {
const { start, middle, end } = props.color;
const startColor = validColor(start);
const middleColor = validColor(middle);
const endColor = validColor(end);
const startColor = typeof start === "string" ? validColor(start) : start;
const middleColor = typeof middle === "string" ? validColor(middle) : middle;
const endColor = typeof end === "string" ? validColor(end) : end;
// TODO: Use curve when generating colors

View file

@ -7,6 +7,9 @@ import { ColorFamily } from "../types";
// As it will generate thousands of lines of code.
// Instead, use the outputs from the reference palette which exports a smaller subset of colors.
// Token or user-facing colors should use short, clear names
// and a 100-900 scale to match the font weight scale.
// Colors should use the LCH color space.
// https://www.w3.org/TR/css-color-4/#lch-colors

View file

@ -1,3 +1,5 @@
import { Color as ChromaColor } from "chroma-js";
export type Color = {
step: number;
hex: string;
@ -18,8 +20,8 @@ export type ColorFamily = {
export interface ColorProps {
name: string;
color: {
start: string;
middle: string;
end: string;
start: string | ChromaColor;
middle: string | ChromaColor;
end: string | ChromaColor;
};
}