UNPKG
@anew/icons
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Anew Icons
github.com/anewjs/icons
anewjs/icons
@anew/icons
/
lib
/
utils
/
colorToHex.js
16 lines
(14 loc)
•
298 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict'
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
=
function
(
color
) {
switch
(color) {
case
'light'
:
return
'#fff'
;
case
'dark'
:
return
'#000'
;
default
:
return
'currentColor'
; } };