Method: Sass::Script::Value::Helpers#hex_color
- Defined in:
- lib/sass/script/value/helpers.rb
permalink #hex_color(value, alpha = nil) ⇒ Sass::Script::Value::Color
Construct a Sass Color from a hex color string.
19 20 21 |
# File 'lib/sass/script/value/helpers.rb', line 19
def hex_color(value, alpha = nil)
Color.from_hex(value, alpha)
end
|