@mrts/colorsets 0.3.18 → 0.3.20

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 CHANGED
@@ -1,4 +1,21 @@
1
- //#region src/index.d.ts
2
- declare function hello(): string;
1
+ //#region src/types.d.ts
2
+ type ColorData = {
3
+ name: string;
4
+ set: string;
5
+ value: string;
6
+ parsed: {
7
+ space: string;
8
+ values: number[];
9
+ alpha: number;
10
+ };
11
+ hex: string;
12
+ delta: number;
13
+ };
3
14
  //#endregion
4
- export { hello };
15
+ //#region src/data/tw4.d.ts
16
+ declare const tw4Colors: Record<string, ColorData>;
17
+ //#endregion
18
+ //#region src/data/cssNamed.d.ts
19
+ declare const cssNamedColors: Record<string, ColorData>;
20
+ //#endregion
21
+ export { cssNamedColors, tw4Colors };