Skip to content

名词解释

HSVA

项目内所有 hsva 的入参范围都为:

HSVA取值范围
h0-360
S0-100
V0-100
A0-1

tinyColor

ts
import { 
ref
} from 'vue'
import {
tinyColor
,HSVA } from '@vrx/color-picker-kit'
const
initColor
= () => {
const
v
=
tinyColor
('#43E97B', {
format
: 'hex' }).
toHsv
()
return { ...
v
,
s
:
v
.
s
* 100,
v
:
v
.
v
* 100,
} } const
color
=
ref
<HSVA>(
initColor
())

是一个颜色值解析与格式转换的包,详见 文档GitHub

Released under the MIT License.