An open API service indexing awesome lists of open source software.

https://github.com/bitmaybewise/colorido

A ruby gem that provides color names and the rgb and hexadecimal codes.
https://github.com/bitmaybewise/colorido

color-names colors gem ruby

Last synced: about 1 year ago
JSON representation

A ruby gem that provides color names and the rgb and hexadecimal codes.

Awesome Lists containing this project

README

          

# Colorido

A gem that provides color names and the rgb and hexadecimal codes.

gem install colorido

## How to use

```ruby
colorido = Colorido.new

colorido.colors # returns all colors as structs

# color sample
#>

colorido.names # returns all color names

colorido.codenames # returns all color codenames

colorido.pick_random # pick a random color
```