Created
May 10, 2013 00:17
-
-
Save erikflowers/5551596 to your computer and use it in GitHub Desktop.
hsl and hsla sublime text 2 snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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