Sha256: 4fef5de6e16260213ea9792ceed32b278b72584e340155a038aebf7f310a608f

Contents?: true

Size: 987 Bytes

Versions: 5

Compression:

Stored size: 987 Bytes

Contents

#--
# Colour management with Ruby.
#
# Copyright 2005 Austin Ziegler
#   http://rubyforge.org/ruby-pdf/
#
#   Licensed under a MIT-style licence.
#
# $Id: metallic.rb,v 1.1 2005/08/05 23:07:20 austin Exp $
#++

  # This namespace contains some RGB metallic colours suggested by Jim Freeze.
module Color::RGB::Metallic
  Aluminum    = Color::RGB.new(0x99, 0x99, 0x99)
  CoolCopper  = Color::RGB.new(0xd9, 0x87, 0x19)
  Copper      = Color::RGB.new(0xb8, 0x73, 0x33)
  Iron        = Color::RGB.new(0x4c, 0x4c, 0x4c)
  Lead        = Color::RGB.new(0x19, 0x19, 0x19)
  Magnesium   = Color::RGB.new(0xb3, 0xb3, 0xb3)
  Mercury     = Color::RGB.new(0xe6, 0xe6, 0xe6)
  Nickel      = Color::RGB.new(0x80, 0x80, 0x80)
  PolySilicon = Color::RGB.new(0x60, 0x00, 0x00)
  Poly        = PolySilicon
  Silver      = Color::RGB.new(0xcc, 0xcc, 0xcc)
  Steel       = Color::RGB.new(0x66, 0x66, 0x66)
  Tin         = Color::RGB.new(0x7f, 0x7f, 0x7f)
  Tungsten    = Color::RGB.new(0x33, 0x33, 0x33)
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
coloration-0.4.0 lib/coloration/color/rgb/metallic.rb
color-tools-1.3.0 lib/color/rgb/metallic.rb
pdf-labels-1.0.0 vendor/color/rgb/metallic.rb
pdf-labels-1.0.1 vendor/color/rgb/metallic.rb
pdf-labels-2.0.1 vendor/color/rgb/metallic.rb