auto-theme-js 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
- type ColorType = "hex" | "hsl" | "rgb" | "oklab" | "oklch";
1
+ /** Suported CSS color types */
2
+ export type ColorType = "hex" | "hsl" | "rgb" | "oklab" | "oklch";
2
3
  type ColorHEX = `#${string}`;
3
4
  type ColorRGB = `rgba(${number}, ${number}, ${number}, ${number})`;
4
5
  type ColorHSL = `hsla(${number}, ${number}%, ${number}%, ${number})`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auto-theme-js",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Generate beautiful, harmonious color palettes from a single base color. Create complete design system color schemes with primary, secondary, tertiary, accent, and neutral variants across 11 shade levels.",
5
5
  "license": "MIT",
6
6
  "author": "Gustavo L. Gregorio",