obi-sdk 0.5.2 → 0.6.2

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,12 +0,0 @@
1
- export declare const ORIGINAL_PRIMARY_COLOR = "#a10fff";
2
- /**
3
- * Generate a selected state color from a primary color based on a design relationship
4
- *
5
- * This function calculates the transformation between an original primary color and its
6
- * designed selected state, then applies that same transformation to any given primary color.
7
- *
8
- * @param currentPrimaryColor - The current primary color in hex format (e.g., '#a10fff')
9
- * @param designedSelectedColor - The color used in the designs in hex format (e.g., '#c76cff')
10
- * @returns The generated selected color in hex format
11
- */
12
- export declare function generateSelectedColor(currentPrimaryColor: string, designedSelectedColor: string): string;