Sha256: fad369691f8bf21327b75870fdd74f12dd6050249467b5c5500b8529f4d0bbb0
Contents?: true
Size: 753 Bytes
Versions: 5
Compression:
Stored size: 753 Bytes
Contents
#-- # Color # Colour management with Ruby # http://rubyforge.org/projects/color # Version 1.4.0 # # Licensed under a MIT-style licence. See Licence.txt in the main # distribution for full licensing information. # # Copyright (c) 2005 - 2007 Austin Ziegler and Matt Lyon # # $Id: test_all.rb 55 2007-02-03 23:29:34Z austin $ #++ require 'color' # This namespace contains some CSS colour names. module Color::CSS # Returns the RGB colour for name or +nil+ if the name is not valid. def self.[](name) @colors[name.to_s.downcase.to_sym] end @colors = {} Color::RGB.constants.each do |const| next if const == "PDF_FORMAT_STR" next if const == "Metallic" @colors[const.downcase.to_sym] ||= Color::RGB.const_get(const) end end
Version data entries
5 entries across 5 versions & 3 rubygems