/** * 色名から16進コードを生成します。 * @param colorName */ export declare function createHexCodeFromColorName(colorName: string): string; /** * 色名を16進表現に変換します。 * @param colorName */ export declare function createHexFromColorName(colorName: string): { r: number; g: number; b: number; } | null; /** * 色名をRGBコードに変換します。 * @param colorName */ export declare function createRGBCodeFromColorName(colorName: string): string; /** * 色名をRGB表現に変換します。 * @param str */ export declare function createRGBFromColorName(str: string): { r: number; g: number; b: number; };