Generate Tailwind colors from brandColor/accentColor

This commit is contained in:
Alex Gleason
2022-03-22 12:37:57 -05:00
parent 18bad4a5ab
commit a42ea0961a
6 changed files with 203 additions and 72 deletions

View File

@ -0,0 +1,10 @@
export type Rgb = { r: number, g: number, b: number };
export type Hsl = { h: number, s: number, l: number };
export type TailwindColorObject = {
[key: number]: string;
};
export type TailwindColorPalette = {
[key: string]: TailwindColorObject,
}