Last active
December 16, 2015 23:39
-
-
Save is8r/5515421 to your computer and use it in GitHub Desktop.
rgbaのような指定方法で16進数の色を半透明にする
This file contains hidden or 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
@function rgb16a($color-code, $opacity) | |
@return rgba(red($color-code), green($color-code), blue($color-code), $opacity) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment