Saturday, November 22, 2025
HomeLanguagesJavascriptFabric.js fromHsl() Method

Fabric.js fromHsl() Method

The fromHsl() method is used to return a new color object for the specified color in HSL(Hue-Saturation-Lightness) format.

Syntax:

fromHsl(color)

Parameters: This method accepts a parameter as mentioned above and described below:

  • color: This parameter holds the specified string color value in HSL format.

Return Value: This method returns a new color object in the format of “RGBA(Red-Green-Blue-Alpha)” for the specified color in HSL format.

Example 1:

Javascript




<!DOCTYPE html>
<html>
  
<head>
  <!-- Adding the FabricJS library -->
  <script src=
  </script>
</head>
  
<body>
  <script type="text/javascript">
  
   // Calling the fromHsl() function over
   // the specified color value in HSL format
   console.log(fabric.Color.fromHsl("hsl(0, 100%, 50%)")); 
  </script>
</body>
  
</html>


Output:

{"_source":[255,0,0,1]}

Example 2:

Javascript




<!DOCTYPE html>
<html>
  
<head>
  <!-- Adding the FabricJS library -->
  <script src=
  </script>
</head>
  
<body>
  <script type="text/javascript">
  
   // Initializing some color values in HSL format
   var Green = "hsl(120, 100%, 50%)";
   var Blue = "hsl(240, 100%, 50%)";
  
   // Calling the fromHsl() function over
   // the above specified color values
   console.log(fabric.Color.fromHsl(Green)); 
   console.log(fabric.Color.fromHsl(Blue)); 
  </script>
</body>
  
</html>


Output:

{"_source":[0,255,0,1]}
{"_source":[0,0,255,1]}
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6849 POSTS0 COMMENTS