No commit activity in last 3 years
No release in over 3 years
Convert rgb colors to their hexadecimal value.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

>= 3.0.0, ~> 3.0
 Project Readme

RgbToHexColor

Gem Version

Turn a tuple of rgb colors into its corresponding hexadecimal color value!

Install

gem install rgb_to_hex_color

Usage

require 'rgb_to_hex_color'

rgb_to_hex_color = RgbToHexColor.new(170, 187, 204)

rgb_to_hex_color.rgb #=> [170, 187, 204]
rgb_to_hex_color.hex #=> '#AABBCC'

Related Gem

HexToRgb - Convert hex colors into rgb colors.

Development

Install

gem install --dev rgb_to_hex_color

Specs

The default Rake task is to run the specs.

rake

License

MIT