forked from tailwindlabs/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwithAlphaVariable.js
More file actions
67 lines (55 loc) · 1.56 KB
/
withAlphaVariable.js
File metadata and controls
67 lines (55 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import createColor from 'color'
import _ from 'lodash'
function hasAlpha(color) {
return (
color.startsWith('rgba(') ||
color.startsWith('hsla(') ||
(color.startsWith('#') && color.length === 9) ||
(color.startsWith('#') && color.length === 5)
)
}
export function toRgba(color) {
const [r, g, b, a] = createColor(color).rgb().array()
return [r, g, b, a === undefined && hasAlpha(color) ? 1 : a]
}
export function toHsla(color) {
const [h, s, l, a] = createColor(color).hsl().array()
return [h, `${s}%`, `${l}%`, a === undefined && hasAlpha(color) ? 1 : a]
}
export function withAlphaValue(color, alphaValue, defaultValue) {
if (_.isFunction(color)) {
return color({ opacityValue: alphaValue })
}
try {
const isHSL = color.startsWith('hsl')
const [i, j, k] = isHSL ? toHsla(color) : toRgba(color)
return `${isHSL ? 'hsla' : 'rgba'}(${i}, ${j}, ${k}, ${alphaValue})`
} catch {
return defaultValue
}
}
export default function withAlphaVariable({ color, property, variable }) {
if (_.isFunction(color)) {
return {
[variable]: '1',
[property]: color({ opacityVariable: variable, opacityValue: `var(${variable})` }),
}
}
try {
const isHSL = color.startsWith('hsl')
const [i, j, k, a] = isHSL ? toHsla(color) : toRgba(color)
if (a !== undefined) {
return {
[property]: color,
}
}
return {
[variable]: '1',
[property]: `${isHSL ? 'hsla' : 'rgba'}(${i}, ${j}, ${k}, var(${variable}))`,
}
} catch (error) {
return {
[property]: color,
}
}
}