UNPKG

multicolors-converter

Version:

A very simple tool to convert colors into differents formats

12 lines (11 loc) 236 B
import colors from "../data/colors.json"; export class Converter { /** * * Get all colors from outside of the Converter Class */ static getColors() { return this.colors; } } Converter.colors = colors;