Skip to content

Instantly share code, notes, and snippets.

@erikflowers
Created May 10, 2013 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikflowers/5551596 to your computer and use it in GitHub Desktop.
Save erikflowers/5551596 to your computer and use it in GitHub Desktop.
hsl and hsla sublime text 2 snippets
<!-- HSL snippet -->
<snippet>
<content><![CDATA[
hsl(${1:0}, ${2:100}%, ${3:100}%)
]]></content>
<tabTrigger>hsl</tabTrigger>
<scope>source.css, source.scss, source.sass, source.less</scope>
<description>hsl()</description>
</snippet>
<!-- HSLA snippet -->
<snippet>
<content><![CDATA[
hsla(${1:0}, ${2:100}%, ${3:100}%, ${4:1.0})
]]></content>
<tabTrigger>hsla</tabTrigger>
<scope>source.css, source.scss, source.sass, source.less</scope>
<description>hsla()</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment