@mrts/colorsets 0.3.21 → 0.3.32
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.
- package/dist/index.d.mts +3 -1
- package/dist/index.mjs +2221 -2199
- package/package.json +4 -3
package/dist/index.d.mts
CHANGED
|
@@ -15,8 +15,10 @@ type ColorData = {
|
|
|
15
15
|
//#endregion
|
|
16
16
|
//#region src/data/tw4.d.ts
|
|
17
17
|
declare const tw4Colors: Record<string, ColorData>;
|
|
18
|
+
declare const tw4ColorSteps: string[];
|
|
19
|
+
declare const tw4ColorNames: string[];
|
|
18
20
|
//#endregion
|
|
19
21
|
//#region src/data/cssNamed.d.ts
|
|
20
22
|
declare const cssNamedColors: Record<string, ColorData>;
|
|
21
23
|
//#endregion
|
|
22
|
-
export { ColorData, ParsedColor, cssNamedColors, tw4Colors };
|
|
24
|
+
export { ColorData, ParsedColor, cssNamedColors, tw4ColorNames, tw4ColorSteps, tw4Colors };
|