RGB 到 HSL 转换公式 将R,G,B值除以 255 以将范围从 0..255 更改为 0..1: R' =R/255 G' =G/255 B' =B/255 Cmax = max(R',G',B') Cmin = min(R',G',B') Δ =Cmax-CMIN 色相计算: 饱和度计算: 亮度计算: L= (Cmax + Cmin) / 2 ...
It can convert RGB to HSL, or convert HSL to RGB. ■ RGB to HSL Color converter ■ HEX HEX : ■ RGB R : G : B : ■ HSL H : S : L : range (H) :0~3600~100 range (S,L) :0~1000~255 Color preview #FF0000 Instructions for Use ...
HSL to RGB / RGB to HSL / Hex Colour Converter Enter your HSL, RGB or hex colour below (or one of each if you wish) and click "Convert." Scroll down for results.HSL: Hue ° Saturation % Lightness % RGB: Red Green Blue Hex: # Related...
Convert RGB to HSLRed Green Blue Hue ° Saturation % Value % Hue ° Saturation % Lightness % HEX # Would you like to convert a RGB color to HSV or HSL ?This is a free online color code converter, transform a color hue to another color model, supports 4 color models, RGB, HSL...
HEX to CMYKConvert Now HEX to HSVConvert Now HEX to HSLConvert Now CMYK Converters CMYK to RGBConvert Now CMYK to HEXConvert Now CMYK to HSVConvert Now CMYK to HSLConvert Now RGB stands for Red, Green, and Blue, which are the primary colors of light. It is a color model used in dig...
Simple, free and easy to use online tool that converts hex colors to RGB colors. No ads, popups or nonsense, just a hex to RGB converter. Load hexadecimal, get RGB.
RGB to HSL conversion formulaThe R,G,B values are divided by 255 to change the range from 0..255 to 0..1:R' = R/255G' = G/255B' = B/255Cmax = max(R', G', B')Cmin = min(R', G', B')Δ = Cmax - CminHue calculation:...
teal#0080800,128,128 aqua#00FFFF0,255,255 Other Tools RGB to HSV Color converter Convert HSV to RGB and RGB to HSV. RGB to HSL Color converter Convert HSL to RGB and RGB to HSL. Color Converter RGB to HEX RGB to HSL RGB to HSV color chart...
The HSL colour model is a cylindrical representation of the RGB model. It represents colours in more intuitive and recognizable way than typical RGB. The model is often used in graphics applications, in colour pickers, and for image analysis. HSL stands for hue, saturation, lightness. ...
How easy is it to modify these functions to convert to and from HSL? Any trick to convert HSV to HSL? Any info you can give me is greatly appreciated, thanks! Yes,numpy, namely the vectorised code, can speed-up color conversions. ...