No commit activity in last 3 years
No release in over 3 years
Reggie B. converts colors between hex format and rgb format. It is very forgiving in the syntax it allows.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme
= Reggie B. -- A Hex/RGB Color Converter

== Description

This is not the gem that you want.  You want the full-featured "color" Ruby gem.

You're still here?  Okay, this is what this gem is all about:

Reggie B. is a utility for converting colors between rgb and hex format.  It was created
to support http://www.2rgb.com.  It is especially useful for handling CSS color formats.

== Examples

  ReggieB.convert "rgb(255, 255, 255)"     =>  "0xffffff"
  ReggieB.convert "255, 255, 255"          =>  "0xffffff"
  ReggieB.convert "rgb(100%, 100%, 100%)"  =>  "0xffffff"
  ReggieB.convert "0xffffff"               =>  [255, 255, 255]
  ReggieB.convert "#ffffff"                =>  [255, 255, 255]
  ReggieB.convert "#fff"                   =>  [255, 255, 255]