Turn a hexadecimal color into its corresponding RGB, decimal values!
gem install hex_to_rgb
require 'hex_to_rgb'
hex_to_rgb = HexToRgb.new("#ABC")
hex_to_rgb.rgb #=> [170, 187, 204]
hex_to_rgb.r #=> 170
hex_to_rgb.g #=> 187
hex_to_rgb.b #=> 204
RgbToHexColor - Convert rgb colors into hex colors.
gem install --dev hex_to_rgb
The default Rake task is to run the specs.
rake
MIT