UNPKG

multicolors-converter

Version:

A very simple tool to convert colors into differents formats

19 lines (18 loc) 489 B
import { Converter } from "@src/converters/Converter"; export declare class RalConverter extends Converter { /** * * @param ral The RAL color to convert to Rgb */ static ralToRgb(ral: string): RgbColor | null; /** * * @param ral The RAL color to convert to Name */ static ralToName(ral: string): string | null; /** * * @param ral The RAL color to convert to HexaDecimal */ static ralToHex(ral: string): string | null; }