-
Notifications
You must be signed in to change notification settings - Fork 18
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.
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);
}This extension has no settings.
This extension has no hooks.