Skip to content

kyletolle/hex_to_rgb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HexToRgb

Gem Version

Turn a hexadecimal color into its corresponding RGB, decimal values!

Install

gem install hex_to_rgb

Usage

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

Related Gem

RgbToHexColor - Convert rgb colors into hex colors.

Development

Install

gem install --dev hex_to_rgb

Specs

The default Rake task is to run the specs.

rake

License

MIT

About

Convert hexadecimal colors to their RGB values.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages