Generate Tailwind colors from brandColor/accentColor
This commit is contained in:
10
app/soapbox/types/colors.ts
Normal file
10
app/soapbox/types/colors.ts
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user