UNPKG
multicolors-converter
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
A very simple tool to convert colors into differents formats
multicolors-converter
/
dist
/
converters
/
Converter.js
12 lines
(11 loc)
•
236 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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;