/** * Convert a color name to a hex color. Can be one of the following: * - A fixed color name (e.g. 'white', 'black'). * - A color palette name (e.g. 'slate-500', 'gray-300'). * - A hex color (e.g. '#ff0000'). * - A OKLCH color (e.g. 'oklch(0.5 0.2 180 / 0.3)'). * * @param color - The color name to convert. * @returns The OKLCH color. */ export declare function convertColorNameToOklch(color: string): string; /** * Convert an OKLCH color to a color name. * @param oklch - The OKLCH color to convert. * @returns The color name. */ export declare function convertOklchToColorName(oklch: string): string; //# sourceMappingURL=color-names.d.ts.map