pigment 0.2.1 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +18 -0
- data/LICENSE.md +22 -0
- data/README.md +182 -1
- data/lib/pigment.rb +3 -307
- data/lib/pigment/color.rb +195 -0
- data/lib/pigment/color/hsl.rb +158 -0
- data/lib/pigment/color/invalid_color_format_error.rb +10 -0
- data/lib/pigment/color/rgb.rb +283 -0
- data/lib/pigment/default_rgb_palette.rb +891 -0
- data/lib/pigment/float_snap.rb +14 -0
- data/lib/pigment/palette.rb +100 -0
- data/lib/pigment/version.rb +3 -0
- metadata +103 -22
- data/lib/colors.rb +0 -755
@@ -0,0 +1,100 @@
|
|
1
|
+
require_relative 'color/rgb'
|
2
|
+
|
3
|
+
module Pigment
|
4
|
+
# Represents a collection of named colors, for convenience
|
5
|
+
class Palette
|
6
|
+
include Enumerable
|
7
|
+
|
8
|
+
# @return [{Object: Pigment::Color}]
|
9
|
+
attr_reader :colors
|
10
|
+
|
11
|
+
# @param [{Object => Pigment::Color}] colors
|
12
|
+
def initialize(**colors)
|
13
|
+
raise ArgumentError, "Pallete only accept colors" unless colors.values.all? {|color| color.is_a?(Pigment::Color)}
|
14
|
+
@colors = colors
|
15
|
+
end
|
16
|
+
|
17
|
+
# @param [Proc] block
|
18
|
+
# @return [Pigment::Palette] if block is passed
|
19
|
+
# @return [Enumerable] otherwise
|
20
|
+
def each(&block)
|
21
|
+
return to_enum(__method__) unless block_given?
|
22
|
+
@colors.each(&block)
|
23
|
+
self
|
24
|
+
end
|
25
|
+
|
26
|
+
# Fetches the colors by names
|
27
|
+
# @param [Array] names
|
28
|
+
# @return [Pigment::Color] if only one result is found
|
29
|
+
# @return [Array<Pigment::Color>]
|
30
|
+
def [](*names)
|
31
|
+
colors = @colors.fetch_values(*names)
|
32
|
+
colors.size == 1 ? colors.first : colors
|
33
|
+
end
|
34
|
+
|
35
|
+
# Adds colors to the Palette with possible multiple names
|
36
|
+
# @param [Array] names
|
37
|
+
# @param [Pigment::Color] color
|
38
|
+
# @return [Pigment::Color]
|
39
|
+
# @raise ArgumentError
|
40
|
+
def []=(*names, color)
|
41
|
+
raise ArgumentError, "Expects Pigment::Color but got #{color.inspect}" unless color.is_a? Pigment::Color
|
42
|
+
names.each { |name| @colors[name] = color }
|
43
|
+
color
|
44
|
+
end
|
45
|
+
|
46
|
+
# Adds a color or a Hash containing Colors as values
|
47
|
+
# @param [Pigment::Palette, Hash{Object => Pigment::Color}] other
|
48
|
+
# @return [Pigment::Palette]
|
49
|
+
def +(other)
|
50
|
+
case other
|
51
|
+
when Pigment::Palette
|
52
|
+
@colors.merge!(other.to_h)
|
53
|
+
when Hash
|
54
|
+
@colors.merge!(other) if other.values.all?(Pigment::Color)
|
55
|
+
else raise ArgumentError, "Invalid operand \"#{other.inspect}:#{other.class}\" for +"
|
56
|
+
end
|
57
|
+
self
|
58
|
+
end
|
59
|
+
|
60
|
+
# Removes a color via its key or value
|
61
|
+
# @param [Object, Pigment::Color] other
|
62
|
+
# @return [Pigment::Palette, Pigment::Color, nil]
|
63
|
+
def -(other)
|
64
|
+
return @colors.delete(other) unless other.is_a? Pigment::Color
|
65
|
+
@colors.delete_if {|_, color| other == color}
|
66
|
+
self
|
67
|
+
end
|
68
|
+
|
69
|
+
# @param [Object] other
|
70
|
+
# @return [Boolean]
|
71
|
+
def ==(other)
|
72
|
+
self.class == other.class && @colors == other.to_h
|
73
|
+
end
|
74
|
+
|
75
|
+
# @return [{Object => Pigment::Color}] An Hash representation of the Palette
|
76
|
+
def to_h
|
77
|
+
@colors.dup
|
78
|
+
end
|
79
|
+
|
80
|
+
# @return [Array<Object>] An array including all the defined color names
|
81
|
+
def names
|
82
|
+
@colors.keys
|
83
|
+
end
|
84
|
+
|
85
|
+
# @return [Array<Pigment::Color>] An array including all the defined colors
|
86
|
+
def colors
|
87
|
+
@colors.values
|
88
|
+
end
|
89
|
+
|
90
|
+
private
|
91
|
+
# Will retrieve the color from the Palette as a method call
|
92
|
+
# @param [Symbol] method the color name
|
93
|
+
# @param [Array] args will be ignored
|
94
|
+
# @return [Pigment::Color] The requested color
|
95
|
+
def method_missing(method, *args)
|
96
|
+
return super unless args.empty?
|
97
|
+
@colors[method] || @colors[method.to_s] || super
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
metadata
CHANGED
@@ -1,17 +1,86 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pigment
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.3.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- P3t3rU5
|
9
8
|
- SilverPhoenix99
|
10
|
-
autorequire:
|
9
|
+
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date:
|
14
|
-
dependencies:
|
12
|
+
date: 2021-08-15 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '3'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '3'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: pry
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0.13'
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0.13'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: simplecov
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: rake
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '13'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '13'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: yard
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - "~>"
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0.9'
|
77
|
+
type: :development
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - "~>"
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0.9'
|
15
84
|
description: A rgb color gem, with a list of 750 different colors defined within 869
|
16
85
|
names.
|
17
86
|
email:
|
@@ -21,36 +90,48 @@ executables: []
|
|
21
90
|
extensions: []
|
22
91
|
extra_rdoc_files: []
|
23
92
|
files:
|
24
|
-
-
|
25
|
-
-
|
93
|
+
- CHANGELOG.md
|
94
|
+
- LICENSE.md
|
26
95
|
- README.md
|
96
|
+
- lib/pigment.rb
|
97
|
+
- lib/pigment/color.rb
|
98
|
+
- lib/pigment/color/hsl.rb
|
99
|
+
- lib/pigment/color/invalid_color_format_error.rb
|
100
|
+
- lib/pigment/color/rgb.rb
|
101
|
+
- lib/pigment/default_rgb_palette.rb
|
102
|
+
- lib/pigment/float_snap.rb
|
103
|
+
- lib/pigment/palette.rb
|
104
|
+
- lib/pigment/version.rb
|
27
105
|
homepage: https://github.com/P3t3rU5/pigment
|
28
|
-
licenses:
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
\
|
33
|
-
\
|
106
|
+
licenses:
|
107
|
+
- MIT
|
108
|
+
metadata: {}
|
109
|
+
post_install_message: "+----------------------------------------------------------------------------+\n
|
110
|
+
\ Thanks for choosing Pigment.\n --------------------------------------------------------------------------\n#
|
111
|
+
0.3.1\n- Fixes creating colors with approximation errors:\n```ruby\n# before 0.3.1\nBrilliantLavender.analogous\n#
|
112
|
+
Invalid Format [0.8063725490196079, 1.0000000000000004, 0.8666666666666667, 1.0]\n\n#
|
113
|
+
after 0.3.1 \nBrilliantLavender.analogous\n# RGB Color(red: 0.8063725490196079,
|
114
|
+
green: 1.0, blue: 0.8666666666666667, alpha: 1.0)\n```\n\n# 0.3.0\n- New classes
|
115
|
+
per Color Format\n - Pigment::Color::RGB\n - Pigment::Color::HSL\n- Base module
|
116
|
+
for Color Formats Pigment::Color\n- Palette class to handle a collection of colors\n
|
117
|
+
\ --------------------------------------------------------------------------\n If
|
118
|
+
you find any bugs, please report them on\n https://github.com/P3t3rU5/pigment/issues\n+----------------------------------------------------------------------------+\n"
|
34
119
|
rdoc_options: []
|
35
120
|
require_paths:
|
36
121
|
- lib
|
37
122
|
required_ruby_version: !ruby/object:Gem::Requirement
|
38
|
-
none: false
|
39
123
|
requirements:
|
40
|
-
- -
|
124
|
+
- - ">="
|
41
125
|
- !ruby/object:Gem::Version
|
42
126
|
version: '0'
|
43
127
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
|
-
none: false
|
45
128
|
requirements:
|
46
|
-
- -
|
129
|
+
- - ">="
|
47
130
|
- !ruby/object:Gem::Version
|
48
131
|
version: '0'
|
49
132
|
requirements: []
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
specification_version: 3
|
133
|
+
rubygems_version: 3.2.25
|
134
|
+
signing_key:
|
135
|
+
specification_version: 4
|
54
136
|
summary: A rgb color gem, with a list of 750 different colors.
|
55
137
|
test_files: []
|
56
|
-
has_rdoc:
|
data/lib/colors.rb
DELETED
@@ -1,755 +0,0 @@
|
|
1
|
-
module Pigment
|
2
|
-
class Color
|
3
|
-
self[:AirForceBlue, :Rackley] = '#5D8AA8'
|
4
|
-
self[:AliceBlue] = '#F0F8FF'
|
5
|
-
self[:AlizarinCrimson, :RoseMadder] = '#E32636'
|
6
|
-
self[:AlloyOrange] = '#C46210'
|
7
|
-
self[:Almond] = '#EFDECD'
|
8
|
-
self[:Aluminium, :Gray60] = '#999999'
|
9
|
-
self[:Amaranth] = '#E52B50'
|
10
|
-
self[:Amber, :FluorescentOrange] = '#FFBF00'
|
11
|
-
self[:AmberSAE_ECE] = '#FF7E00'
|
12
|
-
self[:AmericanRose] = '#FF033E'
|
13
|
-
self[:Amethyst] = '#9966CC'
|
14
|
-
self[:AndroidGreen] = '#A4C639'
|
15
|
-
self[:AntiFlashWhite, :Munsell] = '#F2F3F4'
|
16
|
-
self[:AntiqueBrass] = '#CD9575'
|
17
|
-
self[:AntiqueFuchsia] = '#915C83'
|
18
|
-
self[:AntiqueWhite, :Moccasin] = '#FAEBD7'
|
19
|
-
self[:AoEnglish, :GreenWeb, :OfficeGreen] = '#008000'
|
20
|
-
self[:AppleGreen] = '#8DB600'
|
21
|
-
self[:Apricot] = '#FBCEB1'
|
22
|
-
self[:Aqua, :Cyan, :ElectricCyan] = '#00FFFF'
|
23
|
-
self[:Aquamarine] = '#7FFFD4'
|
24
|
-
self[:ArmyGreen] = '#4B5320'
|
25
|
-
self[:Arsenic] = '#3B444B'
|
26
|
-
self[:ArylideYellow, :HansaYellow] = '#E9D66B'
|
27
|
-
self[:AshGrey] = '#B2BEB5'
|
28
|
-
self[:Asparagus] = '#87A96B'
|
29
|
-
self[:AtomicTangerine, :PinkOrange] = '#FF9966'
|
30
|
-
self[:Auburn, :Brown, :BrownWeb, :RedBrown] = '#A52A2A'
|
31
|
-
self[:Aureolin] = '#FDEE00'
|
32
|
-
self[:AuroMetalSaurus] = '#6E7F80'
|
33
|
-
self[:Azure] = '#007FFF'
|
34
|
-
self[:AzureMist] = '#F0FFFF'
|
35
|
-
self[:BabyBlue] = '#89CFF0'
|
36
|
-
self[:BabyBlueEyes] = '#A1CAF1'
|
37
|
-
self[:BabyPink, :TeaRoseRose] = '#F4C2C2'
|
38
|
-
self[:BallBlue] = '#21ABCD'
|
39
|
-
self[:BananaMania] = '#FAE7B5'
|
40
|
-
self[:BananaYellow] = '#FFE135'
|
41
|
-
self[:BarnRed] = '#7C0A02'
|
42
|
-
self[:BattleshipGrey] = '#848482'
|
43
|
-
self[:Bazaar] = '#98777B'
|
44
|
-
self[:BeauBlue, :PaleAqua] = '#BCD4E6'
|
45
|
-
self[:Beaver] = '#9F8170'
|
46
|
-
self[:Beige] = '#F5F5DC'
|
47
|
-
self[:Bisque] = '#FFE4C4'
|
48
|
-
self[:Bistre] = '#3D2B1F'
|
49
|
-
self[:Bittersweet] = '#FE6F5E'
|
50
|
-
self[:BittersweetShimmer] = '#BF4F51'
|
51
|
-
self[:Black] = '#000000'
|
52
|
-
self[:BlanchedAlmond] = '#FFEBCD'
|
53
|
-
self[:BlastOffBronze] = '#A57164'
|
54
|
-
self[:BlazeOrange, :SafetyOrange] = '#FF6700'
|
55
|
-
self[:BleuDeFrance] = '#318CE7'
|
56
|
-
self[:BlizzardBlue] = '#ACE5EE'
|
57
|
-
self[:Blond] = '#FAF0BE'
|
58
|
-
self[:Blue] = '#0000FF'
|
59
|
-
self[:BlueBell] = '#A2A2D0'
|
60
|
-
self[:BlueCrayola] = '#1F75FE'
|
61
|
-
self[:BlueGray] = '#6699CC'
|
62
|
-
self[:BlueGreen] = '#0D98BA'
|
63
|
-
self[:BlueMunsell] = '#0093AF'
|
64
|
-
self[:BlueNCS] = '#0087BD'
|
65
|
-
self[:BluePigment] = '#333399'
|
66
|
-
self[:BlueRYB] = '#0247FE'
|
67
|
-
self[:BlueViolet] = '#8A2BE2'
|
68
|
-
self[:Blush] = '#DE5D83'
|
69
|
-
self[:Bole] = '#79443B'
|
70
|
-
self[:BondiBlue] = '#0095B6'
|
71
|
-
self[:Bone] = '#E3DAC9'
|
72
|
-
self[:BostonUniversityRed] = '#CC0000'
|
73
|
-
self[:BottleGreen] = '#006A4E'
|
74
|
-
self[:Boysenberry] = '#873260'
|
75
|
-
self[:BrandeisBlue] = '#0070FF'
|
76
|
-
self[:Brass] = '#B5A642'
|
77
|
-
self[:BrickRed] = '#CB4154'
|
78
|
-
self[:BrightCerulean] = '#1DACD6'
|
79
|
-
self[:BrightGreen] = '#66FF00'
|
80
|
-
self[:BrightLavender] = '#BF94E4'
|
81
|
-
self[:BrightMaroon, :MaroonCrayola] = '#C32148'
|
82
|
-
self[:BrightPink, :Rose] = '#FF007F'
|
83
|
-
self[:BrightTurquoise] = '#08E8DE'
|
84
|
-
self[:BrightUbe] = '#D19FE8'
|
85
|
-
self[:BrilliantLavender, :ElectricLavender] = '#F4BBFF'
|
86
|
-
self[:BrilliantRose] = '#FF55A3'
|
87
|
-
self[:BrinkPink] = '#FB607F'
|
88
|
-
self[:BritishRacingGreen] = '#004225'
|
89
|
-
self[:Bronze] = '#CD7F32'
|
90
|
-
self[:BrownTraditional] = '#964B00'
|
91
|
-
self[:BubbleGum] = '#FFC1CC'
|
92
|
-
self[:Bubbles] = '#E7FEFF'
|
93
|
-
self[:Buff] = '#F0DC82'
|
94
|
-
self[:BulgarianRose] = '#480607'
|
95
|
-
self[:Burgundy] = '#800020'
|
96
|
-
self[:BurlyWood] = '#DEB887'
|
97
|
-
self[:BurntOrange] = '#CC5500'
|
98
|
-
self[:BurntUmber] = '#8A3324'
|
99
|
-
self[:Byzantine] = '#BD33A4'
|
100
|
-
self[:Byzantium] = '#702963'
|
101
|
-
self[:Cadet] = '#536872'
|
102
|
-
self[:CadetBlue] = '#5F9EA0'
|
103
|
-
self[:CadetGrey] = '#91A3B0'
|
104
|
-
self[:CadmiumGreen] = '#006B3C'
|
105
|
-
self[:CadmiumOrange] = '#ED872D'
|
106
|
-
self[:CadmiumRed] = '#E30022'
|
107
|
-
self[:CadmiumYellow] = '#FFF600'
|
108
|
-
self[:CafeAuLait, :FrenchBeige] = '#A67B5B'
|
109
|
-
self[:CafeNoir] = '#4B3621'
|
110
|
-
self[:CalPolyGreen] = '#1E4D2B'
|
111
|
-
self[:CambridgeBlue] = '#A3C1AD'
|
112
|
-
self[:Camel, :Desert, :Fallow, :Lion] = '#C19A6B'
|
113
|
-
self[:CameoPink] = '#EFBBCC'
|
114
|
-
self[:CamouflageGreen] = '#78866B'
|
115
|
-
self[:CanaryYellow, :YellowProcess] = '#FFEF00'
|
116
|
-
self[:CandyAppleRed] = '#FF0800'
|
117
|
-
self[:CandyPink, :TangoPink] = '#E4717A'
|
118
|
-
self[:Capri, :DeepSkyBlue] = '#00BFFF'
|
119
|
-
self[:CaputMortuum] = '#592720'
|
120
|
-
self[:Cardinal] = '#C41E3A'
|
121
|
-
self[:CaribbeanGreen] = '#00CC99'
|
122
|
-
self[:Carmine] = '#960018'
|
123
|
-
self[:CarminePink] = '#EB4C42'
|
124
|
-
self[:CarmineRed] = '#FF0038'
|
125
|
-
self[:Carnation] = '#FF5ED0'
|
126
|
-
self[:CarnationPink] = '#FFA6C9'
|
127
|
-
self[:Carnelian, :CornellRed] = '#B31B1B'
|
128
|
-
self[:CarolinaBlue] = '#99BADD'
|
129
|
-
self[:CarrotOrange] = '#ED9121'
|
130
|
-
self[:Cayenne] = '#8D0000'
|
131
|
-
self[:Ceil] = '#92A1CF'
|
132
|
-
self[:Celadon] = '#ACE1AF'
|
133
|
-
self[:CeladonBlue, :Cerulean] = '#007BA7'
|
134
|
-
self[:CelesteColour] = '#B2FFFF'
|
135
|
-
self[:CelestialBlue] = '#4997D0'
|
136
|
-
self[:Cerise] = '#D83387'
|
137
|
-
self[:CerisePink] = '#EC3B83'
|
138
|
-
self[:CeriseRed, :Cherry] = '#DE3163'
|
139
|
-
self[:CeruleanBlue] = '#2A52BE'
|
140
|
-
self[:CeruleanFrost] = '#6D9BC3'
|
141
|
-
self[:CGBlue] = '#007AA5'
|
142
|
-
self[:CGRed] = '#E03C31'
|
143
|
-
self[:Chamoisee] = '#A0785A'
|
144
|
-
self[:Champagne, :DeepChampagne, :Sunset] = '#FAD6A5'
|
145
|
-
self[:Charcoal] = '#36454F'
|
146
|
-
self[:CharmPink, :LightThulianPink] = '#E68FAC'
|
147
|
-
self[:Chartreuse] = '#7FFF00'
|
148
|
-
self[:ChartreuseYellow] = '#DFFF00'
|
149
|
-
self[:CherryBlossomPink] = '#FFB7C5'
|
150
|
-
self[:Chestnut, :IndianRed] = '#CD5C5C'
|
151
|
-
self[:ChinaPink, :ThulianPink] = '#DE6FA1'
|
152
|
-
self[:ChinaRose] = '#A8516E'
|
153
|
-
self[:Chocolate, :ChocolateWeb, :Cinnamon, :CocoaBrown] = '#D2691E'
|
154
|
-
self[:ChocolateTraditional] = '#7B3F00'
|
155
|
-
self[:ChromeYellow] = '#FFA700'
|
156
|
-
self[:Cinereous] = '#98817B'
|
157
|
-
self[:Cinnabar, :Vermilion] = '#E34234'
|
158
|
-
self[:Citrine] = '#E4D00A'
|
159
|
-
self[:ClassicRose] = '#FBCCE7'
|
160
|
-
self[:Cobalt] = '#0047AB'
|
161
|
-
self[:Coffee] = '#6F4E37'
|
162
|
-
self[:ColumbiaBlue] = '#9BDDFF'
|
163
|
-
self[:CongoPink, :CoralPink, :TeaRoseOrange] = '#F88379'
|
164
|
-
self[:CoolBlack] = '#002E63'
|
165
|
-
self[:CoolCopper] = '#D98719'
|
166
|
-
self[:CoolGrey] = '#8C92AC'
|
167
|
-
self[:Copper] = '#B87333'
|
168
|
-
self[:CopperRose] = '#996666'
|
169
|
-
self[:Coquelicot] = '#FF3800'
|
170
|
-
self[:Coral] = '#FF7F50'
|
171
|
-
self[:CoralRed] = '#FF4040'
|
172
|
-
self[:Cordovan] = '#893F45'
|
173
|
-
self[:Corn, :Maize] = '#FBEC5D'
|
174
|
-
self[:CornflowerBlue] = '#6495ED'
|
175
|
-
self[:Cornsilk] = '#FFF8DC'
|
176
|
-
self[:CosmicLatte] = '#FFF8E7'
|
177
|
-
self[:CottonCandy] = '#FFBCD9'
|
178
|
-
self[:Cream] = '#FFFDD0'
|
179
|
-
self[:Crimson] = '#DC143C'
|
180
|
-
self[:CrimsonGlory] = '#BE0032'
|
181
|
-
self[:CyanProcess] = '#00B7EB'
|
182
|
-
self[:Daffodil] = '#FFFF31'
|
183
|
-
self[:Dandelion] = '#F0E130'
|
184
|
-
self[:DarkBlue] = '#00008B'
|
185
|
-
self[:DarkBrown, :OtterBrown] = '#654321'
|
186
|
-
self[:DarkByzantium] = '#5D3954'
|
187
|
-
self[:DarkCandyAppleRed] = '#A40000'
|
188
|
-
self[:DarkCerulean] = '#08457E'
|
189
|
-
self[:DarkChestnut] = '#986960'
|
190
|
-
self[:DarkCoral] = '#CD5B45'
|
191
|
-
self[:DarkCyan] = '#008B8B'
|
192
|
-
self[:DarkElectricBlue, :PaynesGrey] = '#536878'
|
193
|
-
self[:DarkGoldenRod] = '#B8860B'
|
194
|
-
self[:DarkGray] = '#A9A9A9'
|
195
|
-
self[:DarkGreen] = '#013220'
|
196
|
-
self[:DarkImperialBlue, :IndigoDye] = '#00416A'
|
197
|
-
self[:DarkJungleGreen] = '#1A2421'
|
198
|
-
self[:DarkKhaki] = '#BDB76B'
|
199
|
-
self[:DarkLava, :DarkTaupe, :Taupe] = '#483C32'
|
200
|
-
self[:DarkLavender] = '#734F96'
|
201
|
-
self[:DarkMagenta] = '#8B008B'
|
202
|
-
self[:DarkMidnightBlue] = '#003366'
|
203
|
-
self[:DarkOliveGreen] = '#556B2F'
|
204
|
-
self[:DarkOrange] = '#FF8C00'
|
205
|
-
self[:DarkOrchid] = '#9932CC'
|
206
|
-
self[:DarkPastelBlue] = '#779ECB'
|
207
|
-
self[:DarkPastelGreen] = '#03C03C'
|
208
|
-
self[:DarkPastelPurple] = '#966FD6'
|
209
|
-
self[:DarkPastelRed] = '#C23B22'
|
210
|
-
self[:DarkPink] = '#E75480'
|
211
|
-
self[:DarkPowderBlue, :Smalt] = '#003399'
|
212
|
-
self[:DarkRaspberry] = '#872657'
|
213
|
-
self[:DarkRed] = '#8B0000'
|
214
|
-
self[:DarkSalmon] = '#E9967A'
|
215
|
-
self[:DarkScarlet] = '#560319'
|
216
|
-
self[:DarkSeaGreen] = '#8FBC8F'
|
217
|
-
self[:DarkSienna] = '#3C1414'
|
218
|
-
self[:DarkSlateBlue] = '#483D8B'
|
219
|
-
self[:DarkSlateGray] = '#2F4F4F'
|
220
|
-
self[:DarkSpringGreen] = '#177245'
|
221
|
-
self[:DarkTan] = '#918151'
|
222
|
-
self[:DarkTangerine] = '#FFA812'
|
223
|
-
self[:DarkTerraCotta] = '#CC4E5C'
|
224
|
-
self[:DarkTurquoise] = '#00CED1'
|
225
|
-
self[:DarkViolet] = '#9400D3'
|
226
|
-
self[:DarkYellow] = '#9B870C'
|
227
|
-
self[:DartmouthGreen] = '#00703C'
|
228
|
-
self[:DavysGrey] = '#555555'
|
229
|
-
self[:DebianRed] = '#D70A53'
|
230
|
-
self[:DeepCarmine] = '#A9203E'
|
231
|
-
self[:DeepCarminePink] = '#EF3038'
|
232
|
-
self[:DeepCarrotOrange] = '#E9692C'
|
233
|
-
self[:DeepCerise] = '#DA3287'
|
234
|
-
self[:DeepChestnut] = '#B94E48'
|
235
|
-
self[:DeepCoffee] = '#704241'
|
236
|
-
self[:DeepFuchsia] = '#C154C1'
|
237
|
-
self[:DeepJungleGreen] = '#004B49'
|
238
|
-
self[:DeepLilac] = '#9955BB'
|
239
|
-
self[:DeepMagenta] = '#CC00CC'
|
240
|
-
self[:DeepPeach, :PeachCrayola] = '#FFCBA4'
|
241
|
-
self[:DeepPink, :FluorescentPink] = '#FF1493'
|
242
|
-
self[:DeepSaffron] = '#FF9933'
|
243
|
-
self[:Denim] = '#1560BD'
|
244
|
-
self[:DesertSand] = '#EDC9AF'
|
245
|
-
self[:DimGray] = '#696969'
|
246
|
-
self[:DodgerBlue] = '#1E90FF'
|
247
|
-
self[:DogwoodRose] = '#D71868'
|
248
|
-
self[:DollarBill] = '#85BB65'
|
249
|
-
self[:Drab, :ModeBeige, :SandDune, :SandyTaupe] = '#967117'
|
250
|
-
self[:DukeBlue] = '#00009C'
|
251
|
-
self[:EagleGreen, :MidnightGreen] = '#004953'
|
252
|
-
self[:EarthYellow] = '#E1A95F'
|
253
|
-
self[:Ecru, :Sand] = '#C2B280'
|
254
|
-
self[:Eggplant] = '#614051'
|
255
|
-
self[:Eggshell] = '#F0EAD6'
|
256
|
-
self[:EgyptianBlue] = '#1034A6'
|
257
|
-
self[:ElectricBlue] = '#7DF9FF'
|
258
|
-
self[:ElectricCrimson] = '#FF003F'
|
259
|
-
self[:ElectricGreen, :Green, :GreenX11, :Lime, :LimeWeb] = '#00FF00'
|
260
|
-
self[:ElectricIndigo] = '#6F00FF'
|
261
|
-
self[:ElectricLime, :FluorescentYellow, :FrenchLime] = '#CCFF00'
|
262
|
-
self[:ElectricPurple] = '#BF00FF'
|
263
|
-
self[:ElectricUltramarine] = '#3F00FF'
|
264
|
-
self[:ElectricViolet] = '#8F00FF'
|
265
|
-
self[:ElectricYellow, :Yellow] = '#FFFF00'
|
266
|
-
self[:Emerald, :ParisGreen] = '#50C878'
|
267
|
-
self[:EtonBlue] = '#96C8A2'
|
268
|
-
self[:FaluRed] = '#801818'
|
269
|
-
self[:Fandango] = '#B53389'
|
270
|
-
self[:FashionFuchsia, :HollywoodCerise] = '#F400A1'
|
271
|
-
self[:Fawn] = '#E5AA70'
|
272
|
-
self[:Feldgrau] = '#4D5D53'
|
273
|
-
self[:Feldspar] = '#D19275'
|
274
|
-
self[:FernGreen] = '#4F7942'
|
275
|
-
self[:FerrariRed] = '#FF2800'
|
276
|
-
self[:FieldDrab] = '#6C541E'
|
277
|
-
self[:Firebrick] = '#B22222'
|
278
|
-
self[:FireEngineRed] = '#CE2029'
|
279
|
-
self[:Flame] = '#E25822'
|
280
|
-
self[:FlamingoPink] = '#FC8EAC'
|
281
|
-
self[:Flavescent] = '#F7E98E'
|
282
|
-
self[:Flax] = '#EEDC82'
|
283
|
-
self[:FloralWhite] = '#FFFAF0'
|
284
|
-
self[:Folly] = '#FF004F'
|
285
|
-
self[:ForestGreenTraditional, :UPForestGreen] = '#014421'
|
286
|
-
self[:ForestGreenWeb] = '#228B22'
|
287
|
-
self[:FrenchBlue] = '#0072BB'
|
288
|
-
self[:FrenchLilac] = '#86608E'
|
289
|
-
self[:FrenchRaspberry] = '#C72C48'
|
290
|
-
self[:FrenchRose] = '#F64A8A'
|
291
|
-
self[:Fuchsia, :Magenta] = '#FF00FF'
|
292
|
-
self[:FuchsiaPink] = '#FF77FF'
|
293
|
-
self[:FuchsiaRose] = '#C74375'
|
294
|
-
self[:Fulvous] = '#E48400'
|
295
|
-
self[:FuzzyWuzzy] = '#CC6666'
|
296
|
-
self[:Gainsboro] = '#DCDCDC'
|
297
|
-
self[:Gamboge] = '#E49B0F'
|
298
|
-
self[:GhostWhite] = '#F8F8FF'
|
299
|
-
self[:Ginger] = '#B06500'
|
300
|
-
self[:Glaucous] = '#6082B6'
|
301
|
-
self[:Glitter] = '#E6E8FA'
|
302
|
-
self[:Gold, :GoldWebGolden] = '#FFD700'
|
303
|
-
self[:GoldenBrown] = '#996515'
|
304
|
-
self[:GoldenPoppy] = '#FCC200'
|
305
|
-
self[:Goldenrod] = '#DAA520'
|
306
|
-
self[:GoldenYellow] = '#FFDF00'
|
307
|
-
self[:GoldMetallic] = '#D4AF37'
|
308
|
-
self[:GrannySmithApple] = '#A8E4A0'
|
309
|
-
self[:Gray, :Gray50, :Nickel, :TrolleyGrey] = '#808080'
|
310
|
-
self[:Gray10, :Lead] = '#191919'
|
311
|
-
self[:Gray20] = '#373737'
|
312
|
-
self[:Gray30, :Iron] = '#4C4C4C'
|
313
|
-
self[:Gray40, :Steel] = '#666666'
|
314
|
-
self[:Gray70, :Magnesium] = '#B3B3B3'
|
315
|
-
self[:Gray80, :Silver2] = '#CCCCCC'
|
316
|
-
self[:Gray90, :Mercury] = '#E6E6E6'
|
317
|
-
self[:GrayAsparagus] = '#465945'
|
318
|
-
self[:GrayWeb, :Tin] = '#7F7F7F'
|
319
|
-
self[:GrayX11] = '#BEBEBE'
|
320
|
-
self[:GreenCrayola] = '#1CAC78'
|
321
|
-
self[:GreenMunsell] = '#00A877'
|
322
|
-
self[:GreenNCS] = '#009F6B'
|
323
|
-
self[:GreenPigment] = '#00A550'
|
324
|
-
self[:GreenRYB] = '#66B032'
|
325
|
-
self[:GreenYellow] = '#ADFF2F'
|
326
|
-
self[:Grullo] = '#A99A86'
|
327
|
-
self[:GuppieGreen, :SpringGreen] = '#00FF7F'
|
328
|
-
self[:HalayaUbe] = '#663854'
|
329
|
-
self[:HanBlue] = '#446CCF'
|
330
|
-
self[:HanPurple] = '#5218FA'
|
331
|
-
self[:Harlequin] = '#3FFF00'
|
332
|
-
self[:HarvardCrimson] = '#C90016'
|
333
|
-
self[:HarvestGold] = '#DA9100'
|
334
|
-
self[:HeartGold, :Olive] = '#808000'
|
335
|
-
self[:Heliotrope] = '#DF73FF'
|
336
|
-
self[:Honeydew] = '#F0FFF0'
|
337
|
-
self[:HonoluluBlue] = '#007FBF'
|
338
|
-
self[:HookersGreen] = '#49796B'
|
339
|
-
self[:HotMagenta] = '#FF1DCE'
|
340
|
-
self[:HotPink] = '#FF69B4'
|
341
|
-
self[:HunterGreen] = '#355E3B'
|
342
|
-
self[:Iceberg] = '#71A6D2'
|
343
|
-
self[:Icterine] = '#FCF75E'
|
344
|
-
self[:ImperialBlue] = '#002395'
|
345
|
-
self[:Inchworm] = '#B2EC5D'
|
346
|
-
self[:IndiaGreen] = '#138808'
|
347
|
-
self[:IndianYellow] = '#E3A857'
|
348
|
-
self[:Indigo] = '#4F69C6'
|
349
|
-
self[:IndigoWeb] = '#4B0082'
|
350
|
-
self[:InternationalKleinBlue] = '#002FA7'
|
351
|
-
self[:InternationalOrangeAerospace] = '#FF4F00'
|
352
|
-
self[:InternationalOrangeEngineering] = '#BA160C'
|
353
|
-
self[:Iris] = '#5A4FCF'
|
354
|
-
self[:Isabelline] = '#F4F0EC'
|
355
|
-
self[:IslamicGreen] = '#009000'
|
356
|
-
self[:Ivory] = '#FFFFF0'
|
357
|
-
self[:Jade] = '#00A86B'
|
358
|
-
self[:Jasmine, :MellowYellow] = '#F8DE7E'
|
359
|
-
self[:Jasper] = '#D73B3E'
|
360
|
-
self[:JazzberryJam] = '#A50B5E'
|
361
|
-
self[:Jonquil, :NaplesYellow, :RoyalYellow, :StilDeGrainYellow] = '#FADA5E'
|
362
|
-
self[:JuneBud] = '#BDDA57'
|
363
|
-
self[:JungleGreen] = '#29AB87'
|
364
|
-
self[:KellyGreen] = '#4CBB17'
|
365
|
-
self[:Khaki, :KhakiX11, :LightKhaki] = '#F0E68C'
|
366
|
-
self[:KhakiWeb] = '#C3B091'
|
367
|
-
self[:KUCrimson] = '#E8000D'
|
368
|
-
self[:LanguidLavender] = '#D6CADD'
|
369
|
-
self[:LapisLazuli] = '#26619C'
|
370
|
-
self[:LaSalleGreen] = '#087830'
|
371
|
-
self[:LaserLemon] = '#FEFE22'
|
372
|
-
self[:LaurelGreen] = '#A9BA9D'
|
373
|
-
self[:Lava] = '#CF1020'
|
374
|
-
self[:LavenderBlue, :Periwinkle] = '#CCCCFF'
|
375
|
-
self[:LavenderBlush] = '#FFF0F5'
|
376
|
-
self[:LavenderFloral] = '#B57EDC'
|
377
|
-
self[:LavenderGray] = '#C4C3D0'
|
378
|
-
self[:LavenderIndigo] = '#9457EB'
|
379
|
-
self[:LavenderMagenta, :Violet, :VioletWeb] = '#EE82EE'
|
380
|
-
self[:LavenderMist, :LavenderWeb] = '#E6E6FA'
|
381
|
-
self[:LavenderPink] = '#FBAED2'
|
382
|
-
self[:LavenderPurple] = '#967BB6'
|
383
|
-
self[:LavenderRose] = '#FBA0E3'
|
384
|
-
self[:LawnGreen] = '#7CFC00'
|
385
|
-
self[:Lemon] = '#FFF700'
|
386
|
-
self[:LemonChiffon] = '#FFFACD'
|
387
|
-
self[:LemonLime] = '#E3FF00'
|
388
|
-
self[:LightApricot] = '#FDD5B1'
|
389
|
-
self[:LightBlue] = '#ADD8E6'
|
390
|
-
self[:LightBrown] = '#B5651D'
|
391
|
-
self[:LightCarminePink] = '#E66771'
|
392
|
-
self[:LightCoral] = '#F08080'
|
393
|
-
self[:LightCornflowerBlue] = '#93CCEA'
|
394
|
-
self[:LightCrimson] = '#F56991'
|
395
|
-
self[:LightCyan] = '#E0FFFF'
|
396
|
-
self[:LightFuchsiaPink] = '#F984EF'
|
397
|
-
self[:LightGoldenrodYellow] = '#FAFAD2'
|
398
|
-
self[:LightGray] = '#D3D3D3'
|
399
|
-
self[:LightGreen] = '#90EE90'
|
400
|
-
self[:LightPastelPurple] = '#B19CD9'
|
401
|
-
self[:LightPink] = '#FFB6C1'
|
402
|
-
self[:LightRedOchre] = '#E97451'
|
403
|
-
self[:LightSalmon] = '#FFA07A'
|
404
|
-
self[:LightSalmonPink] = '#FF9999'
|
405
|
-
self[:LightSeaGreen] = '#20B2AA'
|
406
|
-
self[:LightSkyBlue] = '#87CEFA'
|
407
|
-
self[:LightSlateBlue] = '#8470FF'
|
408
|
-
self[:LightSlateGray] = '#778899'
|
409
|
-
self[:LightSteelBlue] = '#B0C4DE'
|
410
|
-
self[:LightTaupe] = '#B38B6D'
|
411
|
-
self[:LightYellow] = '#FFFFED'
|
412
|
-
self[:Lilac] = '#C8A2C8'
|
413
|
-
self[:LimeCW] = '#BFFF00'
|
414
|
-
self[:LimeGreen] = '#32CD32'
|
415
|
-
self[:LincolnGreen] = '#195905'
|
416
|
-
self[:Linen] = '#FAF0E6'
|
417
|
-
self[:Liver] = '#534B4F'
|
418
|
-
self[:Lust] = '#E62020'
|
419
|
-
self[:MagentaDye] = '#CA1F7B'
|
420
|
-
self[:MagentaProcess] = '#FF0090'
|
421
|
-
self[:MagicMint] = '#AAF0D1'
|
422
|
-
self[:Magnolia] = '#F8F4FF'
|
423
|
-
self[:Mahogany] = '#C04000'
|
424
|
-
self[:MajorelleBlue] = '#6050DC'
|
425
|
-
self[:Malachite] = '#0BDA51'
|
426
|
-
self[:Manatee] = '#979AAA'
|
427
|
-
self[:MangoTango] = '#FF8243'
|
428
|
-
self[:Mantis] = '#74C365'
|
429
|
-
self[:Maroon, :MaroonWeb] = '#800000'
|
430
|
-
self[:MaroonX11, :RichMaroon] = '#B03060'
|
431
|
-
self[:Mauve] = '#E0B0FF'
|
432
|
-
self[:Mauvelous] = '#EF98AA'
|
433
|
-
self[:MauveTaupe, :RaspberryGlace] = '#915F6D'
|
434
|
-
self[:MayaBlue] = '#73C2FB'
|
435
|
-
self[:MeatBrown] = '#E5B73B'
|
436
|
-
self[:MediumAquamarine] = '#66DDAA'
|
437
|
-
self[:MediumBlue] = '#0000CD'
|
438
|
-
self[:MediumCandyAppleRed] = '#E2062C'
|
439
|
-
self[:MediumCarmine, :PaleCarmine] = '#AF4035'
|
440
|
-
self[:MediumChampagne, :Vanilla] = '#F3E5AB'
|
441
|
-
self[:MediumElectricBlue] = '#035096'
|
442
|
-
self[:MediumJungleGreen] = '#1C352D'
|
443
|
-
self[:MediumLavenderMagenta, :PalePlum, :Plum, :PlumWeb] = '#DDA0DD'
|
444
|
-
self[:MediumOrchid] = '#BA55D3'
|
445
|
-
self[:MediumPersianBlue] = '#0067A5'
|
446
|
-
self[:MediumPurple] = '#9370DB'
|
447
|
-
self[:MediumRedViolet] = '#BB3385'
|
448
|
-
self[:MediumSeaGreen] = '#3CB371'
|
449
|
-
self[:MediumSlateBlue] = '#7B68EE'
|
450
|
-
self[:MediumSpringBud] = '#C9DC87'
|
451
|
-
self[:MediumSpringGreen] = '#00FA9A'
|
452
|
-
self[:MediumTaupe] = '#674C47'
|
453
|
-
self[:MediumTealBlue] = '#0054B4'
|
454
|
-
self[:MediumTurquoise] = '#48D1CC'
|
455
|
-
self[:MediumVioletRed, :RedViolet] = '#C71585'
|
456
|
-
self[:Melon] = '#FDBCB4'
|
457
|
-
self[:MidnightBlue] = '#191970'
|
458
|
-
self[:MikadoYellow] = '#FFC40C'
|
459
|
-
self[:Mint] = '#3EB489'
|
460
|
-
self[:MintCream] = '#F5FFFA'
|
461
|
-
self[:MintGreen] = '#98FF98'
|
462
|
-
self[:MistyRose] = '#FFE4E1'
|
463
|
-
self[:Moccasin2] = '#FFE4B5'
|
464
|
-
self[:MoonstoneBlue] = '#73A9C2'
|
465
|
-
self[:MordantRed19] = '#AE0C00'
|
466
|
-
self[:MossGreen] = '#ADDFAD'
|
467
|
-
self[:MountainMeadow] = '#30BA8F'
|
468
|
-
self[:MountbattenPink] = '#997A8D'
|
469
|
-
self[:MSUGreen] = '#18453B'
|
470
|
-
self[:Mulberry] = '#C54B8C'
|
471
|
-
self[:Mustard] = '#FFDB58'
|
472
|
-
self[:Myrtle] = '#21421E'
|
473
|
-
self[:NadeshikoPink] = '#F6ADC6'
|
474
|
-
self[:NapierGreen] = '#2A8000'
|
475
|
-
self[:NavajoWhite] = '#FFDEAD'
|
476
|
-
self[:Navy, :NavyBlue] = '#000080'
|
477
|
-
self[:NeonCarrot] = '#FFA343'
|
478
|
-
self[:NeonFuchsia] = '#FE4164'
|
479
|
-
self[:NeonGreen] = '#39FF14'
|
480
|
-
self[:NewYorkPink] = '#D7837F'
|
481
|
-
self[:NonPhotoBlue] = '#A4DDED'
|
482
|
-
self[:NorthTexasGreen] = '#059033'
|
483
|
-
self[:OceanBoatBlue] = '#0077BE'
|
484
|
-
self[:Ochre] = '#CC7722'
|
485
|
-
self[:OldGold] = '#CFB53B'
|
486
|
-
self[:OldLace] = '#FDF5E6'
|
487
|
-
self[:OldLavender] = '#796878'
|
488
|
-
self[:OldMauve] = '#673147'
|
489
|
-
self[:OldRose] = '#C08081'
|
490
|
-
self[:OliveDrab, :OliveDrabWeb] = '#6B8E23'
|
491
|
-
self[:OliveDrab7] = '#3C341F'
|
492
|
-
self[:Olivine] = '#9AB973'
|
493
|
-
self[:Onyx] = '#0F0F0F'
|
494
|
-
self[:OperaMauve] = '#B784A7'
|
495
|
-
self[:Orange, :OrangeWeb] = '#FFA500'
|
496
|
-
self[:OrangeCW] = '#FF7F00'
|
497
|
-
self[:OrangePeel] = '#FF9F00'
|
498
|
-
self[:OrangeRed, :RedOrange] = '#FF4500'
|
499
|
-
self[:OrangeRYB] = '#FB9902'
|
500
|
-
self[:Orchid] = '#DA70D6'
|
501
|
-
self[:OUCrimsonRed, :Stizza, :USCCardinal] = '#990000'
|
502
|
-
self[:OuterSpace] = '#414A4C'
|
503
|
-
self[:OutrageousOrange] = '#FF6E4A'
|
504
|
-
self[:OxfordBlue] = '#002147'
|
505
|
-
self[:PakistanGreen] = '#006600'
|
506
|
-
self[:PalatinateBlue] = '#273BE2'
|
507
|
-
self[:PalatinatePurple] = '#682860'
|
508
|
-
self[:PaleBlue, :PaleTurquoise] = '#AFEEEE'
|
509
|
-
self[:PaleBrown] = '#987654'
|
510
|
-
self[:PaleCerulean] = '#9BC4E2'
|
511
|
-
self[:PaleChestnut] = '#DDADAF'
|
512
|
-
self[:PaleCopper] = '#DA8A67'
|
513
|
-
self[:PaleCornflowerBlue] = '#ABCDEF'
|
514
|
-
self[:PaleGold] = '#E6BE8A'
|
515
|
-
self[:PaleGoldenrod] = '#EEE8AA'
|
516
|
-
self[:PaleGreen] = '#98FB98'
|
517
|
-
self[:PaleLavender] = '#DCD0FF'
|
518
|
-
self[:PaleMagenta] = '#F984E5'
|
519
|
-
self[:PalePink] = '#FADADD'
|
520
|
-
self[:PaleRedViolet, :PaleVioletRed] = '#DB7093'
|
521
|
-
self[:PaleRobinEggBlue] = '#96DED1'
|
522
|
-
self[:PaleSilver] = '#C9C0BB'
|
523
|
-
self[:PaleSpringBud] = '#ECEBBD'
|
524
|
-
self[:PaleTaupe] = '#BC987E'
|
525
|
-
self[:PansyPurple] = '#78184A'
|
526
|
-
self[:PapayaWhip] = '#FFEFD5'
|
527
|
-
self[:Paradiso] = '#2F847C'
|
528
|
-
self[:PastelBlue] = '#AEC6CF'
|
529
|
-
self[:PastelBrown] = '#836953'
|
530
|
-
self[:PastelGray] = '#CFCFC4'
|
531
|
-
self[:PastelGreen] = '#77DD77'
|
532
|
-
self[:PastelMagenta] = '#F49AC2'
|
533
|
-
self[:PastelOrange] = '#FFB347'
|
534
|
-
self[:PastelPink] = '#DEA5A4'
|
535
|
-
self[:PastelPurple] = '#B39EB5'
|
536
|
-
self[:PastelRed] = '#FF6961'
|
537
|
-
self[:PastelViolet] = '#CB99C9'
|
538
|
-
self[:PastelYellow] = '#FDFD96'
|
539
|
-
self[:Patriarch, :Purple, :PurpleWeb] = '#800080'
|
540
|
-
self[:Peach] = '#FFE5B4'
|
541
|
-
self[:PeachOrange] = '#FFCC99'
|
542
|
-
self[:PeachPuff] = '#FFDAB9'
|
543
|
-
self[:PeachYellow] = '#FADFAD'
|
544
|
-
self[:Pear] = '#D1E231'
|
545
|
-
self[:Pearl] = '#EAE0C8'
|
546
|
-
self[:PearlAqua] = '#88D8C0'
|
547
|
-
self[:PearlyPurple] = '#B768A2'
|
548
|
-
self[:Peridot] = '#E6E200'
|
549
|
-
self[:PersianBlue] = '#1C39BB'
|
550
|
-
self[:PersianGreen] = '#00A693'
|
551
|
-
self[:PersianIndigo] = '#32127A'
|
552
|
-
self[:PersianOrange] = '#D99058'
|
553
|
-
self[:PersianPink] = '#F77FBE'
|
554
|
-
self[:PersianPlum, :Prune] = '#701C1C'
|
555
|
-
self[:PersianRed] = '#CC3333'
|
556
|
-
self[:PersianRose] = '#FE28A2'
|
557
|
-
self[:Persimmon] = '#EC5800'
|
558
|
-
self[:Peru] = '#CD853F'
|
559
|
-
self[:Phlox, :PsychedelicPurple] = '#DF00FF'
|
560
|
-
self[:PhthaloBlue] = '#000F89'
|
561
|
-
self[:PhthaloGreen] = '#123524'
|
562
|
-
self[:PiggyPink] = '#FDDDE6'
|
563
|
-
self[:PineGreen] = '#01796F'
|
564
|
-
self[:Pink] = '#FFC0CB'
|
565
|
-
self[:PinkLace] = '#FFDDF4'
|
566
|
-
self[:PinkPearl] = '#E7ACCF'
|
567
|
-
self[:PinkSherbet] = '#F78FA7'
|
568
|
-
self[:Pistachio] = '#93C572'
|
569
|
-
self[:Platinum] = '#E5E4E2'
|
570
|
-
self[:PlumTraditional] = '#8E4585'
|
571
|
-
self[:Poly, :PolySilicon] = '#600000'
|
572
|
-
self[:PortlandOrange] = '#FF5A36'
|
573
|
-
self[:PowderBlue, :PowderBlueWeb] = '#B0E0E6'
|
574
|
-
self[:PrincetonOrange] = '#FF8F00'
|
575
|
-
self[:PrussianBlue] = '#003153'
|
576
|
-
self[:Puce] = '#CC8899'
|
577
|
-
self[:Pumpkin] = '#FF7518'
|
578
|
-
self[:PurpleHeart] = '#69359C'
|
579
|
-
self[:PurpleMountainMajesty] = '#9678B6'
|
580
|
-
self[:PurpleMunsell] = '#9F00C5'
|
581
|
-
self[:PurplePizzazz] = '#FE4EDA'
|
582
|
-
self[:PurpleTaupe] = '#50404D'
|
583
|
-
self[:PurpleX11, :Veronica] = '#A020F0'
|
584
|
-
self[:Quartz] = '#51484F'
|
585
|
-
self[:RadicalRed] = '#FF355E'
|
586
|
-
self[:Raspberry] = '#E30B5D'
|
587
|
-
self[:RaspberryPink] = '#E25098'
|
588
|
-
self[:RaspberryRose] = '#B3446C'
|
589
|
-
self[:RawUmber] = '#826644'
|
590
|
-
self[:RazzleDazzleRose] = '#FF33CC'
|
591
|
-
self[:Razzmatazz] = '#E3256B'
|
592
|
-
self[:Red] = '#FF0000'
|
593
|
-
self[:RedMunsell] = '#F2003C'
|
594
|
-
self[:RedNCS] = '#C40233'
|
595
|
-
self[:RedPigment] = '#ED1C24'
|
596
|
-
self[:RedRYB] = '#FE2712'
|
597
|
-
self[:Redwood, :RoseVale] = '#AB4E52'
|
598
|
-
self[:Regalia] = '#522D80'
|
599
|
-
self[:RichBlack] = '#004040'
|
600
|
-
self[:RichBrilliantLavender] = '#F1A7FE'
|
601
|
-
self[:RichCarmine] = '#D70040'
|
602
|
-
self[:RichElectricBlue] = '#0892D0'
|
603
|
-
self[:RichLavender] = '#A76BCF'
|
604
|
-
self[:RichLilac] = '#B666D2'
|
605
|
-
self[:RifleGreen] = '#414833'
|
606
|
-
self[:RobinEggBlue] = '#00CCCC'
|
607
|
-
self[:RoseBonbon] = '#F9429E'
|
608
|
-
self[:RoseEbony] = '#674846'
|
609
|
-
self[:RoseGold] = '#B76E79'
|
610
|
-
self[:RosePink] = '#FF66CC'
|
611
|
-
self[:RoseQuartz] = '#AA98A9'
|
612
|
-
self[:RoseTaupe] = '#905D5D'
|
613
|
-
self[:Rosewood] = '#65000B'
|
614
|
-
self[:RossoCorsa] = '#D40000'
|
615
|
-
self[:RosyBrown] = '#BC8F8F'
|
616
|
-
self[:RoyalAzure] = '#0038A8'
|
617
|
-
self[:RoyalBlue, :RoyalBlueWeb] = '#4169E1'
|
618
|
-
self[:RoyalBlueTraditional] = '#002366'
|
619
|
-
self[:RoyalFuchsia] = '#CA2C92'
|
620
|
-
self[:RoyalPurple] = '#7851A9'
|
621
|
-
self[:Ruby] = '#E0115F'
|
622
|
-
self[:Ruddy] = '#FF0028'
|
623
|
-
self[:RuddyBrown] = '#BB6528'
|
624
|
-
self[:RuddyPink] = '#E18E96'
|
625
|
-
self[:Rufous] = '#A81C07'
|
626
|
-
self[:Russet] = '#80461B'
|
627
|
-
self[:Rust] = '#B7410E'
|
628
|
-
self[:SacramentoStateGreen] = '#00563F'
|
629
|
-
self[:SaddleBrown] = '#8B4513'
|
630
|
-
self[:Saffron] = '#F4C430'
|
631
|
-
self[:Salmon] = '#FF8C69'
|
632
|
-
self[:Salmon2] = '#FA8072'
|
633
|
-
self[:SalmonPink] = '#FF91A4'
|
634
|
-
self[:Sandstorm] = '#ECD540'
|
635
|
-
self[:SandyBrown] = '#F4A460'
|
636
|
-
self[:Sangria] = '#92000A'
|
637
|
-
self[:SapGreen] = '#507D2A'
|
638
|
-
self[:Sapphire] = '#0F52BA'
|
639
|
-
self[:SatinSheenGold] = '#CBA135'
|
640
|
-
self[:Scarlet] = '#FF2400'
|
641
|
-
self[:ScarletCrayola, :TractorRed] = '#FD0E35'
|
642
|
-
self[:SchoolBusYellow] = '#FFD800'
|
643
|
-
self[:ScreaminGreen] = '#76FF7A'
|
644
|
-
self[:SeaBlue] = '#006994'
|
645
|
-
self[:SeaGreen] = '#2E8B57'
|
646
|
-
self[:SealBrown] = '#321414'
|
647
|
-
self[:Seashell] = '#FFF5EE'
|
648
|
-
self[:SelectiveYellow] = '#FFBA00'
|
649
|
-
self[:Sepia] = '#704214'
|
650
|
-
self[:Shadow] = '#8A795D'
|
651
|
-
self[:ShamrockGreen] = '#009E60'
|
652
|
-
self[:ShockingPink] = '#FC0FC0'
|
653
|
-
self[:ShockingPinkCrayola, :UltraPink] = '#FF6FFF'
|
654
|
-
self[:Sienna] = '#A0522D'
|
655
|
-
self[:Silver] = '#C0C0C0'
|
656
|
-
self[:Sinopia] = '#CB410B'
|
657
|
-
self[:Skobeloff] = '#007474'
|
658
|
-
self[:SkyBlue] = '#87CEEB'
|
659
|
-
self[:SkyMagenta] = '#CF71AF'
|
660
|
-
self[:SlateBlue] = '#6A5ACD'
|
661
|
-
self[:SlateGray] = '#708090'
|
662
|
-
self[:SmokeyTopaz] = '#933D41'
|
663
|
-
self[:SmokyBlack] = '#100C08'
|
664
|
-
self[:Snow] = '#FFFAFA'
|
665
|
-
self[:SpiroDiscoBall] = '#0FC0FC'
|
666
|
-
self[:SpringBud] = '#A7FC00'
|
667
|
-
self[:SteelBlue] = '#4682B4'
|
668
|
-
self[:Stormcloud] = '#4F666A'
|
669
|
-
self[:StPatricksBlue] = '#23297A'
|
670
|
-
self[:Straw] = '#E4D96F'
|
671
|
-
self[:Sunglow] = '#FFCC33'
|
672
|
-
self[:Tan] = '#D2B48C'
|
673
|
-
self[:Tangelo] = '#F94D00'
|
674
|
-
self[:Tangerine] = '#F28500'
|
675
|
-
self[:TangerineYellow, :USCGold] = '#FFCC00'
|
676
|
-
self[:TaupeGray] = '#8B8589'
|
677
|
-
self[:TeaGreen] = '#D0F0C0'
|
678
|
-
self[:Teal] = '#008080'
|
679
|
-
self[:TealBlue] = '#367588'
|
680
|
-
self[:TealGreen] = '#00827F'
|
681
|
-
self[:Telemagenta] = '#CF3476'
|
682
|
-
self[:TenneTawny] = '#CD5700'
|
683
|
-
self[:TerraCotta] = '#E2725B'
|
684
|
-
self[:Thistle] = '#D8BFD8'
|
685
|
-
self[:TickleMePink] = '#FC89AC'
|
686
|
-
self[:TiffanyBlue] = '#0ABAB5'
|
687
|
-
self[:TigersEye] = '#E08D3C'
|
688
|
-
self[:Timberwolf] = '#DBD7D2'
|
689
|
-
self[:TitaniumYellow] = '#EEE600'
|
690
|
-
self[:Tomato] = '#FF6347'
|
691
|
-
self[:Toolbox] = '#746CC0'
|
692
|
-
self[:Topaz] = '#FFC87C'
|
693
|
-
self[:Transparent] = '#00000000'
|
694
|
-
self[:TropicalRainForest] = '#00755E'
|
695
|
-
self[:TrueBlue] = '#0073CF'
|
696
|
-
self[:TuftsBlue] = '#417DC1'
|
697
|
-
self[:Tumbleweed] = '#DEAA88'
|
698
|
-
self[:Tungsten] = '#333333'
|
699
|
-
self[:TurkishRose] = '#B57281'
|
700
|
-
self[:Turquoise] = '#40E0D0'
|
701
|
-
self[:TurquoiseBlue] = '#00FFEF'
|
702
|
-
self[:TurquoiseGreen] = '#A0D6B4'
|
703
|
-
self[:TuscanRed] = '#66424D'
|
704
|
-
self[:TwilightLavender] = '#8A496B'
|
705
|
-
self[:TyrianPurple] = '#66023C'
|
706
|
-
self[:UABlue] = '#0033AA'
|
707
|
-
self[:UARed] = '#D9004C'
|
708
|
-
self[:Ube] = '#8878C3'
|
709
|
-
self[:UCLABlue] = '#536895'
|
710
|
-
self[:UCLAGold] = '#FFB300'
|
711
|
-
self[:UFOGreen] = '#3CD070'
|
712
|
-
self[:Ultramarine] = '#120A8F'
|
713
|
-
self[:UltramarineBlue] = '#4166F5'
|
714
|
-
self[:Umber] = '#635147'
|
715
|
-
self[:UnitedNationsBlue] = '#5B92E5'
|
716
|
-
self[:UniversityOfCaliforniaGold] = '#B78727'
|
717
|
-
self[:UnmellowYellow] = '#FFFF66'
|
718
|
-
self[:UPMaroon] = '#7B1113'
|
719
|
-
self[:UpsdellRed] = '#AE2029'
|
720
|
-
self[:Urobilin] = '#E1AD21'
|
721
|
-
self[:UtahCrimson] = '#D3003F'
|
722
|
-
self[:VegasGold] = '#C5B358'
|
723
|
-
self[:VenetianRed] = '#C80815'
|
724
|
-
self[:Verdigris] = '#43B3AE'
|
725
|
-
self[:VioletCW] = '#7F00FF'
|
726
|
-
self[:VioletRed] = '#D02090'
|
727
|
-
self[:VioletRYB] = '#8601AF'
|
728
|
-
self[:Viridian] = '#40826D'
|
729
|
-
self[:VividAuburn] = '#922724'
|
730
|
-
self[:VividBurgundy] = '#9F1D35'
|
731
|
-
self[:VividCerise] = '#DA1D81'
|
732
|
-
self[:VividTangerine] = '#FFA089'
|
733
|
-
self[:VividViolet] = '#9F00FF'
|
734
|
-
self[:WarmBlack] = '#004242'
|
735
|
-
self[:Waterspout] = '#A4F4F9'
|
736
|
-
self[:Wenge] = '#645452'
|
737
|
-
self[:Wheat] = '#F5DEB3'
|
738
|
-
self[:White] = '#FFFFFF'
|
739
|
-
self[:WhiteSmoke] = '#F5F5F5'
|
740
|
-
self[:WildBlueYonder] = '#A2ADD0'
|
741
|
-
self[:WildStrawberry] = '#FF43A4'
|
742
|
-
self[:WildWatermelon] = '#FC6C85'
|
743
|
-
self[:Wine] = '#722F37'
|
744
|
-
self[:Wisteria] = '#C9A0DC'
|
745
|
-
self[:Xanadu] = '#738678'
|
746
|
-
self[:YaleBlue] = '#0F4D92'
|
747
|
-
self[:YellowGreen] = '#9ACD32'
|
748
|
-
self[:YellowMunsell] = '#EFCC00'
|
749
|
-
self[:YellowNCS] = '#FFD300'
|
750
|
-
self[:YellowOrange] = '#FFAE42'
|
751
|
-
self[:YellowRYB] = '#FEFE33'
|
752
|
-
self[:Zaffre] = '#0014A8'
|
753
|
-
self[:ZinnwalditeBrown] = '#2C1608'
|
754
|
-
end
|
755
|
-
end
|