Skip to content

rgbToHsl(options)

RGB颜色值转HSL颜色值

options

参数名称类型必填可选值默认值描述
rnumber0-255-红色
gnumber0-255-绿色
bnumber0-255-蓝色

基础使用

vue
<script lang="uts" setup>
	import { rgbToHsl } from "@/uni_modules/ucs-color";
	
	// RGB颜色值转HSL颜色值
	// {h: 246.8181818181818, l: 0.6431372549019608, s: 0.9670329670329672}
	console.log(rgbToHsl(96,76,252))
</script>