@projectwallace/css-design-tokens 0.0.1 → 0.3.0

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/colors.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  import { KeywordSet } from './keyword-set.js';
2
+ import { ColorToken } from './types.js';
2
3
  export declare const named_colors: KeywordSet;
3
4
  export declare const system_colors: KeywordSet;
4
5
  export declare const color_functions: KeywordSet;
6
+ export declare function color_to_token(color: string): ColorToken;