@gataca/design-system 0.3.55 → 0.3.57

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.
@@ -15,3 +15,9 @@ export declare function hexToRgb(hex: string): {
15
15
  * @returns {boolean} True if the color is dark, false if it is light.
16
16
  */
17
17
  export declare function isColorDark(hex: string): boolean;
18
+ /**
19
+ * Determines if a color is white.
20
+ * @param {string} color - The color string.
21
+ * @returns {boolean} True if the color is white, false if it is not.
22
+ */
23
+ export declare function isWhite(color: string): boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "homepage": "https://gataca-io.github.io/design-system",
3
3
  "name": "@gataca/design-system",
4
- "version": "0.3.55",
4
+ "version": "0.3.57",
5
5
  "files": [
6
6
  "dist"
7
7
  ],