Curriculum
Course: CSS
Login

Curriculum

CSS

CSS INTRODUCTION

0/1

CSS Selectors

0/1

CSS Comments

0/1

CSS Padding

0/1

CSS Box Model

0/1

CSS Combinators

0/1

CSS Pseudo-classes

0/1

CSS Pseudo-elements

0/1

CSS Dropdowns

0/1

CSS Image Gallery

0/1

CSS Image Sprites

0/1

CSS Counters

0/1

CSS Website Layout

0/1

CSS Specificity

0/1

CSS Math Functions

0/1
Text lesson

HSL

HSL Value

In CSS, you can define a color using hue, saturation, and lightness (HSL) with the syntax:

hsl(huesaturationlightness)

Hue is represented as a degree on the color wheel ranging from 0 to 360, where 0 corresponds to red, 120 to green, and 240 to blue.

Saturation is expressed as a percentage value, where 0% signifies a shade of gray and 100% represents the full color intensity.

Lightness is also represented as a percentage, with 0% indicating black, 50% representing a neutral shade, and 100% indicating white.

You can experiment with various combinations of HSL values to create different colors.

Image

Example

Image

Saturation

Saturation refers to the vibrancy or strength of a color.

At 100%, the color is pure and lacks any shades of gray.

At 50%, the color is diluted with 50% gray, yet it remains perceptible.

At 0%, the color is fully desaturated, appearing entirely gray with no trace of its original hue.

Example

Image

Lightness

The lightness of a color indicates the amount of illumination it possesses. At 0%, there is no light, resulting in a black shade.

At 50%, the color is neither dark nor light, representing an equal balance of illumination. At 100%, the color is fully illuminated, appearing as white.

Example

Image

Shades of Gray

Gray shades are typically created by setting both the hue and saturation to 0, then adjusting the lightness from 0% to 100% to achieve darker or lighter tones.

Example

Image

HSLA Value

HSLA color values extend HSL color values by incorporating an alpha channel, which determines the opacity of a color.

An HSLA color value consists of:

hsla(hue, saturationlightness, alpha)

The alpha parameter ranges from 0.0 (completely transparent) to 1.0 (fully opaque):

Explore various combinations of HSLA values to observe their effects.

Image

Example

Image