Skip to content
anthonyshort edited this page Aug 17, 2010 · 4 revisions

The HSL extension allows you to use the hsl() CSS3 color function with any browser by converting them to rgb values.

Usage

Anytime you use the hsl or hsla color function in your CSS, Scaffold will automatically convert it to an rgb or rgba equivalent.

Here’s an example:

#id
{
   background: hsla(100,100,100,0.5);
   color:hsl(100,56,46);
}

#id
{
   background: rgba(255,255,255,0.5);
   color:rgb(95,183,52);
}

Settings

This extension has no settings.

Hooks

This extension has no hooks.

Clone this wiki locally