isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
15 lines • 693 B
TypeScript
/**
* Converts a hex string like "#33aa33" to a KColor object.
*
* @param hexString A hex string like "#ffffff" or "ffffff". (The "#" character is optional.)
* @param alpha Optional. Range is from 0 to 1. Default is 1. (The same as the `Color` constructor.)
*/
export declare function hexToColor(hexString: string, alpha?: number): Readonly<Color>;
/**
* Converts a hex string like "#33aa33" to a Color object.
*
* @param hexString A hex string like "#ffffff" or "ffffff". (The "#" character is optional.)
* @param alpha Range is from 0 to 1. Default is 1.
*/
export declare function hexToKColor(hexString: string, alpha?: number): Readonly<KColor>;
//# sourceMappingURL=hex.d.ts.map