module RGB

This is a color map for Enhancement to make it easier to deal with colors in FXRuby.

To use, just do:

include RGB

List of available colors

* ghost_white

* white_smoke

* floral_white

* old_lace

* antique_white

* papaya_whip

* blanched_almond

* peach_puff

* navajo_white

* lemon_chiffon

* mint_cream

* alice_blue

* lavender_blush

* misty_rose

* dark_slate_gray

* dark_slate_grey

* dim_gray

* dim_grey

* slate_gray

* slate_grey

* light_slate_grey

* light_gray

* midnight_blue

* navy_blue

* cornflower_blue

* dark_slate_blue

* slate_blue

* medium_slate_blue

* light_slate_blue

* medium_blue

* royal_blue

* dodger_blue

* deep_sky_blue

* sky_blue

* light_sky_blue

* steel_blue

* light_steel_blue

* light_blue

* powder_blue

* pale_turquoise

* dark_turquoise

* medium_turquoise

* light_cyan

* cadet_blue

* medium_aquamarine

* dark_green

* dark_olive_green

* dark_sea_green

* sea_green

* medium_sea_green

* light_sea_green

* pale_green

* spring_green

* lawn_green

* medium_spring_green

* green_yellow

* lime_green

* yellow_green

* forest_green

* olive_drab

* dark_khaki

* pale_goldenrod

* light_goldenrod_yellow

* light_yellow

* light_goldenrod

* dark_goldenrod

* rosy_brown

* indian_red

* saddle_brown

* sandy_brown

* dark_salmon

* light_salmon

* dark_orange

* light_coral

* orange_red

* hot_pink

* deep_pink

* light_pink

* pale_violet_red

* medium_violet_red

* violet_red

* medium_orchid

* dark_orchid

* dark_violet

* blue_violet

* medium_purple

* antique_white1

* antique_white2

* antique_white3

* antique_white4

* peach_puff1

* peach_puff2

* peach_puff3

* peach_puff4

* navajo_white1

* navajo_white2

* navajo_white3

* navajo_white4

* lemon_chiffon1

* lemon_chiffon2

* lemon_chiffon3

* lemon_chiffon4

* lavender_blush1

* lavender_blush2

* lavender_blush3

* lavender_blush4

* misty_rose1

* misty_rose2

* misty_rose3

* misty_rose4

* slate_blue1

* slate_blue2

* slate_blue3

* slate_blue4

* royal_blue1

* royal_blue2

* royal_blue3

* royal_blue4

* dodger_blue1

* dodger_blue2

* dodger_blue3

* dodger_blue4

* steel_blue1

* steel_blue2

* steel_blue3

* steel_blue4

* deep_sky_blue1

* deep_sky_blue2

* deep_sky_blue3

* deep_sky_blue4

* sky_blue1

* sky_blue2

* sky_blue3

* sky_blue4

* light_sky_blue1

* light_sky_blue2

* light_sky_blue3

* light_sky_blue4

* slate_gray1

* slate_gray2

* slate_gray3

* slate_gray4

* light_steel_blue1

* light_steel_blue2

* light_steel_blue3

* light_steel_blue4

* light_blue1

* light_blue2

* light_blue3

* light_blue4

* light_cyan1

* light_cyan2

* light_cyan3

* light_cyan4

* pale_turquoise1

* pale_turquoise2

* pale_turquoise3

* pale_turquoise4

* cadet_blue1

* cadet_blue2

* cadet_blue3

* cadet_blue4

* dark_slate_gray1

* dark_slate_gray2

* dark_slate_gray3

* dark_slate_gray4

* dark_sea_green1

* dark_sea_green2

* dark_sea_green3

* dark_sea_green4

* sea_green1

* sea_green2

* sea_green3

* sea_green4

* pale_green1

* pale_green2

* pale_green3

* pale_green4

* spring_green1

* spring_green2

* spring_green3

* spring_green4

* olive_drab1

* olive_drab2

* olive_drab3

* olive_drab4

* dark_olive_green1

* dark_olive_green2

* dark_olive_green3

* dark_olive_green4

* light_goldenrod1

* light_goldenrod2

* light_goldenrod3

* light_goldenrod4

* light_yellow1

* light_yellow2

* light_yellow3

* light_yellow4

* dark_goldenrod1

* dark_goldenrod2

* dark_goldenrod3

* dark_goldenrod4

* rosy_brown1

* rosy_brown2

* rosy_brown3

* rosy_brown4

* indian_red1

* indian_red2

* indian_red3

* indian_red4

* light_salmon1

* light_salmon2

* light_salmon3

* light_salmon4

* dark_orange1

* dark_orange2

* dark_orange3

* dark_orange4

* orange_red1

* orange_red2

* orange_red3

* orange_red4

* deep_pink1

* deep_pink2

* deep_pink3

* deep_pink4

* hot_pink1

* hot_pink2

* hot_pink3

* hot_pink4

* light_pink1

* light_pink2

* light_pink3

* light_pink4

* pale_violet_red1

* pale_violet_red2

* pale_violet_red3

* pale_violet_red4

* violet_red1

* violet_red2

* violet_red3

* violet_red4

* medium_orchid1

* medium_orchid2

* medium_orchid3

* medium_orchid4

* dark_orchid1

* dark_orchid2

* dark_orchid3

* dark_orchid4

* medium_purple1

* medium_purple2

* medium_purple3

* medium_purple4

* dark_grey

* dark_gray

* dark_blue

* dark_cyan

* dark_magenta

* dark_red

* light_green

* white

* black

* red

* pink

* orange

* yellow

* green

* magenta

* cyan

* blue

NOTE WELL

This file is generated by fxruby-enhancement.
Do NOT modify this file. Modify the ERB template
file instead, and run 'rake scrape'.

color = RGB::Color.from_rgb_hex(“#333333”) color = RGB::Color.from_rgb_hex(0xFF0000) color = RGB::Color.from_rgb(115, 38, 38) color = RGB::Color.from_fractions(0, 1.0, 0.5) # HSL

# Supported color manipulations: color.darken(20) color.darken_percent(10) color.darken!(20) color.darken_percent!(10) color.lighten(20) color.lighten_percent(20) color.lighten!(20) color.lighten_percent!(20) color.saturate(20) color.saturate_percent(20) color.saturate!(20) color.saturate_percent!(20) color.desaturate(20) color.desaturate_percent(20) color.desaturate!(20) color.desaturate_percent!(20)

color.invert!

# Mixing colors: color.mix(other_color, 20) # Mix 20% of other color into current one color.mix(other_color) # 50% by default color.mix!(other_color, 20) color.mix!(other_color)

# Also you can adjust color HSL (hue, saturation, and lightness values) manually: color.hue = 0.1 color.saturation = 0.2 color.lightness = 0.3

# Supported output formats: color.to_rgb_hex

> “#732626”

color.to_hsl

> [0, 1.0, 0.5]

color.to_rgb

> [115, 38, 38]

Public Instance Methods

alice_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 583
def alice_blue; Fox.FXRGB(240, 248, 255); end
antique_white() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 569
def antique_white; Fox.FXRGB(250, 235, 215); end
antique_white1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 733
def antique_white1; Fox.FXRGB(255, 239, 219); end
antique_white2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 735
def antique_white2; Fox.FXRGB(238, 223, 204); end
antique_white3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 737
def antique_white3; Fox.FXRGB(205, 192, 176); end
antique_white4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 739
def antique_white4; Fox.FXRGB(139, 131, 120); end
black() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1085
def black; Fox.FXRGB(0, 0, 0); end
blanched_almond() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 573
def blanched_almond; Fox.FXRGB(255, 235, 205); end
blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1101
def blue; Fox.FXRGB(0, 0, 255) ; end
blue_violet() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 729
def blue_violet; Fox.FXRGB(138,  43, 226); end
cadet_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 647
def cadet_blue; Fox.FXRGB( 95, 158, 160); end
cadet_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 877
def cadet_blue1; Fox.FXRGB(152, 245, 255); end
cadet_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 879
def cadet_blue2; Fox.FXRGB(142, 229, 238); end
cadet_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 881
def cadet_blue3; Fox.FXRGB(122, 197, 205); end
cadet_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 883
def cadet_blue4; Fox.FXRGB( 83, 134, 139); end
cornflower_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 609
def cornflower_blue; Fox.FXRGB(100, 149, 237); end
cyan() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1099
def cyan; Fox.FXRGB(0, 255, 255); end
dark_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1073
def dark_blue; Fox.FXRGB(0  ,   0, 139); end
dark_cyan() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1075
def dark_cyan; Fox.FXRGB(0  , 139, 139); end
dark_goldenrod() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 691
def dark_goldenrod; Fox.FXRGB(184, 134,  11); end
dark_goldenrod1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 957
def dark_goldenrod1; Fox.FXRGB(255, 185,  15); end
dark_goldenrod2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 959
def dark_goldenrod2; Fox.FXRGB(238, 173,  14); end
dark_goldenrod3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 961
def dark_goldenrod3; Fox.FXRGB(205, 149,  12); end
dark_goldenrod4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 963
def dark_goldenrod4; Fox.FXRGB(139, 101,   8); end
dark_gray() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1071
def dark_gray; Fox.FXRGB(169, 169, 169); end
dark_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 651
def dark_green; Fox.FXRGB(  0, 100,   0); end
dark_grey() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1069
def dark_grey; Fox.FXRGB(169, 169, 169); end
dark_khaki() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 681
def dark_khaki; Fox.FXRGB(189, 183, 107); end
dark_magenta() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1077
def dark_magenta; Fox.FXRGB(139,   0, 139); end
dark_olive_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 653
def dark_olive_green; Fox.FXRGB( 85, 107,  47); end
dark_olive_green1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 933
def dark_olive_green1; Fox.FXRGB(202, 255, 112); end
dark_olive_green2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 935
def dark_olive_green2; Fox.FXRGB(188, 238, 104); end
dark_olive_green3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 937
def dark_olive_green3; Fox.FXRGB(162, 205,  90); end
dark_olive_green4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 939
def dark_olive_green4; Fox.FXRGB(110, 139,  61); end
dark_orange() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 705
def dark_orange; Fox.FXRGB(255, 140,   0); end
dark_orange1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 989
def dark_orange1; Fox.FXRGB(255, 127,   0); end
dark_orange2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 991
def dark_orange2; Fox.FXRGB(238, 118,   0); end
dark_orange3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 993
def dark_orange3; Fox.FXRGB(205, 102,   0); end
dark_orange4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 995
def dark_orange4; Fox.FXRGB(139,  69,   0); end
dark_orchid() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 725
def dark_orchid; Fox.FXRGB(153,  50, 204); end
dark_orchid1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1053
def dark_orchid1; Fox.FXRGB(191,  62, 255); end
dark_orchid2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1055
def dark_orchid2; Fox.FXRGB(178,  58, 238); end
dark_orchid3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1057
def dark_orchid3; Fox.FXRGB(154,  50, 205); end
dark_orchid4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1059
def dark_orchid4; Fox.FXRGB(104,  34, 139); end
dark_red() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1079
def dark_red; Fox.FXRGB(139,   0,   0); end
dark_salmon() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 701
def dark_salmon; Fox.FXRGB(233, 150, 122); end
dark_sea_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 655
def dark_sea_green; Fox.FXRGB(143, 188, 143); end
dark_sea_green1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 893
def dark_sea_green1; Fox.FXRGB(193, 255, 193); end
dark_sea_green2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 895
def dark_sea_green2; Fox.FXRGB(180, 238, 180); end
dark_sea_green3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 897
def dark_sea_green3; Fox.FXRGB(155, 205, 155); end
dark_sea_green4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 899
def dark_sea_green4; Fox.FXRGB(105, 139, 105); end
dark_slate_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 611
def dark_slate_blue; Fox.FXRGB( 72,  61, 139); end
dark_slate_gray() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 589
def dark_slate_gray; Fox.FXRGB( 47,  79,  79); end
dark_slate_gray1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 885
def dark_slate_gray1; Fox.FXRGB(151, 255, 255); end
dark_slate_gray2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 887
def dark_slate_gray2; Fox.FXRGB(141, 238, 238); end
dark_slate_gray3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 889
def dark_slate_gray3; Fox.FXRGB(121, 205, 205); end
dark_slate_gray4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 891
def dark_slate_gray4; Fox.FXRGB( 82, 139, 139); end
dark_slate_grey() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 591
def dark_slate_grey; Fox.FXRGB( 47,  79,  79); end
dark_turquoise() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 641
def dark_turquoise; Fox.FXRGB(  0, 206, 209); end
dark_violet() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 727
def dark_violet; Fox.FXRGB(148,   0, 211); end
deep_pink() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 713
def deep_pink; Fox.FXRGB(255,  20, 147); end
deep_pink1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1005
def deep_pink1; Fox.FXRGB(255,  20, 147); end
deep_pink2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1007
def deep_pink2; Fox.FXRGB(238,  18, 137); end
deep_pink3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1009
def deep_pink3; Fox.FXRGB(205,  16, 118); end
deep_pink4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1011
def deep_pink4; Fox.FXRGB(139,  10,  80); end
deep_sky_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 625
def deep_sky_blue; Fox.FXRGB(  0, 191, 255); end
deep_sky_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 813
def deep_sky_blue1; Fox.FXRGB(  0, 191, 255); end
deep_sky_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 815
def deep_sky_blue2; Fox.FXRGB(  0, 178, 238); end
deep_sky_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 817
def deep_sky_blue3; Fox.FXRGB(  0, 154, 205); end
deep_sky_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 819
def deep_sky_blue4; Fox.FXRGB(  0, 104, 139); end
dim_gray() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 593
def dim_gray; Fox.FXRGB(105, 105, 105); end
dim_grey() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 595
def dim_grey; Fox.FXRGB(105, 105, 105); end
dodger_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 623
def dodger_blue; Fox.FXRGB( 30, 144, 255); end
dodger_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 797
def dodger_blue1; Fox.FXRGB( 30, 144, 255); end
dodger_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 799
def dodger_blue2; Fox.FXRGB( 28, 134, 238); end
dodger_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 801
def dodger_blue3; Fox.FXRGB( 24, 116, 205); end
dodger_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 803
def dodger_blue4; Fox.FXRGB( 16,  78, 139); end
floral_white() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 565
def floral_white; Fox.FXRGB(255, 250, 240); end
forest_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 677
def forest_green; Fox.FXRGB( 34, 139,  34); end
ghost_white() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 561
def ghost_white; Fox.FXRGB(248, 248, 255); end
green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1095
def green; Fox.FXRGB(0, 255, 0); end
green_yellow() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 671
def green_yellow; Fox.FXRGB(173, 255,  47); end
hot_pink() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 711
def hot_pink; Fox.FXRGB(255, 105, 180); end
hot_pink1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1013
def hot_pink1; Fox.FXRGB(255, 110, 180); end
hot_pink2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1015
def hot_pink2; Fox.FXRGB(238, 106, 167); end
hot_pink3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1017
def hot_pink3; Fox.FXRGB(205,  96, 144); end
hot_pink4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1019
def hot_pink4; Fox.FXRGB(139,  58,  98); end
indian_red() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 695
def indian_red; Fox.FXRGB(205,  92,  92); end
indian_red1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 973
def indian_red1; Fox.FXRGB(255, 106, 106); end
indian_red2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 975
def indian_red2; Fox.FXRGB(238,  99,  99); end
indian_red3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 977
def indian_red3; Fox.FXRGB(205,  85,  85); end
indian_red4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 979
def indian_red4; Fox.FXRGB(139,  58,  58); end
lavender_blush() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 585
def lavender_blush; Fox.FXRGB(255, 240, 245); end
lavender_blush1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 765
def lavender_blush1; Fox.FXRGB(255, 240, 245); end
lavender_blush2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 767
def lavender_blush2; Fox.FXRGB(238, 224, 229); end
lavender_blush3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 769
def lavender_blush3; Fox.FXRGB(205, 193, 197); end
lavender_blush4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 771
def lavender_blush4; Fox.FXRGB(139, 131, 134); end
lawn_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 667
def lawn_green; Fox.FXRGB(124, 252,   0); end
lemon_chiffon() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 579
def lemon_chiffon; Fox.FXRGB(255, 250, 205); end
lemon_chiffon1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 757
def lemon_chiffon1; Fox.FXRGB(255, 250, 205); end
lemon_chiffon2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 759
def lemon_chiffon2; Fox.FXRGB(238, 233, 191); end
lemon_chiffon3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 761
def lemon_chiffon3; Fox.FXRGB(205, 201, 165); end
lemon_chiffon4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 763
def lemon_chiffon4; Fox.FXRGB(139, 137, 112); end
light_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 635
def light_blue; Fox.FXRGB(173, 216, 230); end
light_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 853
def light_blue1; Fox.FXRGB(191, 239, 255); end
light_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 855
def light_blue2; Fox.FXRGB(178, 223, 238); end
light_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 857
def light_blue3; Fox.FXRGB(154, 192, 205); end
light_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 859
def light_blue4; Fox.FXRGB(104, 131, 139); end
light_coral() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 707
def light_coral; Fox.FXRGB(240, 128, 128); end
light_cyan() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 645
def light_cyan; Fox.FXRGB(224, 255, 255); end
light_cyan1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 861
def light_cyan1; Fox.FXRGB(224, 255, 255); end
light_cyan2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 863
def light_cyan2; Fox.FXRGB(209, 238, 238); end
light_cyan3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 865
def light_cyan3; Fox.FXRGB(180, 205, 205); end
light_cyan4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 867
def light_cyan4; Fox.FXRGB(122, 139, 139); end
light_goldenrod() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 689
def light_goldenrod; Fox.FXRGB(238, 221, 130); end
light_goldenrod1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 941
def light_goldenrod1; Fox.FXRGB(255, 236, 139); end
light_goldenrod2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 943
def light_goldenrod2; Fox.FXRGB(238, 220, 130); end
light_goldenrod3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 945
def light_goldenrod3; Fox.FXRGB(205, 190, 112); end
light_goldenrod4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 947
def light_goldenrod4; Fox.FXRGB(139, 129,  76); end
light_goldenrod_yellow() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 685
def light_goldenrod_yellow; Fox.FXRGB(250, 250, 210); end
light_gray() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 603
def light_gray; Fox.FXRGB(211, 211, 211); end
light_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1081
def light_green; Fox.FXRGB(144, 238, 144); end
light_pink() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 715
def light_pink; Fox.FXRGB(255, 182, 193); end
light_pink1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1021
def light_pink1; Fox.FXRGB(255, 174, 185); end
light_pink2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1023
def light_pink2; Fox.FXRGB(238, 162, 173); end
light_pink3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1025
def light_pink3; Fox.FXRGB(205, 140, 149); end
light_pink4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1027
def light_pink4; Fox.FXRGB(139,  95, 101); end
light_salmon() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 703
def light_salmon; Fox.FXRGB(255, 160, 122); end
light_salmon1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 981
def light_salmon1; Fox.FXRGB(255, 160, 122); end
light_salmon2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 983
def light_salmon2; Fox.FXRGB(238, 149, 114); end
light_salmon3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 985
def light_salmon3; Fox.FXRGB(205, 129,  98); end
light_salmon4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 987
def light_salmon4; Fox.FXRGB(139,  87,  66); end
light_sea_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 661
def light_sea_green; Fox.FXRGB( 32, 178, 170); end
light_sky_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 629
def light_sky_blue; Fox.FXRGB(135, 206, 250); end
light_sky_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 829
def light_sky_blue1; Fox.FXRGB(176, 226, 255); end
light_sky_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 831
def light_sky_blue2; Fox.FXRGB(164, 211, 238); end
light_sky_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 833
def light_sky_blue3; Fox.FXRGB(141, 182, 205); end
light_sky_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 835
def light_sky_blue4; Fox.FXRGB( 96, 123, 139); end
light_slate_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 617
def light_slate_blue; Fox.FXRGB(132, 112, 255); end
light_slate_grey() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 601
def light_slate_grey; Fox.FXRGB(119, 136, 153); end
light_steel_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 633
def light_steel_blue; Fox.FXRGB(176, 196, 222); end
light_steel_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 845
def light_steel_blue1; Fox.FXRGB(202, 225, 255); end
light_steel_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 847
def light_steel_blue2; Fox.FXRGB(188, 210, 238); end
light_steel_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 849
def light_steel_blue3; Fox.FXRGB(162, 181, 205); end
light_steel_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 851
def light_steel_blue4; Fox.FXRGB(110, 123, 139); end
light_yellow() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 687
def light_yellow; Fox.FXRGB(255, 255, 224); end
light_yellow1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 949
def light_yellow1; Fox.FXRGB(255, 255, 224); end
light_yellow2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 951
def light_yellow2; Fox.FXRGB(238, 238, 209); end
light_yellow3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 953
def light_yellow3; Fox.FXRGB(205, 205, 180); end
light_yellow4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 955
def light_yellow4; Fox.FXRGB(139, 139, 122); end
lime_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 673
def lime_green; Fox.FXRGB( 50, 205,  50); end
magenta() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1097
def magenta; Fox.FXRGB(255, 0, 255); end
medium_aquamarine() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 649
def medium_aquamarine; Fox.FXRGB(102, 205, 170); end
medium_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 619
def medium_blue; Fox.FXRGB(  0,   0, 205); end
medium_orchid() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 723
def medium_orchid; Fox.FXRGB(186,  85, 211); end
medium_orchid1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1045
def medium_orchid1; Fox.FXRGB(224, 102, 255); end
medium_orchid2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1047
def medium_orchid2; Fox.FXRGB(209,  95, 238); end
medium_orchid3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1049
def medium_orchid3; Fox.FXRGB(180,  82, 205); end
medium_orchid4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1051
def medium_orchid4; Fox.FXRGB(122,  55, 139); end
medium_purple() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 731
def medium_purple; Fox.FXRGB(147, 112, 219); end
medium_purple1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1061
def medium_purple1; Fox.FXRGB(171, 130, 255); end
medium_purple2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1063
def medium_purple2; Fox.FXRGB(159, 121, 238); end
medium_purple3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1065
def medium_purple3; Fox.FXRGB(137, 104, 205); end
medium_purple4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1067
def medium_purple4; Fox.FXRGB( 93,  71, 139); end
medium_sea_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 659
def medium_sea_green; Fox.FXRGB( 60, 179, 113); end
medium_slate_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 615
def medium_slate_blue; Fox.FXRGB(123, 104, 238); end
medium_spring_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 669
def medium_spring_green; Fox.FXRGB(  0, 250, 154); end
medium_turquoise() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 643
def medium_turquoise; Fox.FXRGB( 72, 209, 204); end
medium_violet_red() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 719
def medium_violet_red; Fox.FXRGB(199,  21, 133); end
midnight_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 605
def midnight_blue; Fox.FXRGB( 25,  25, 112); end
mint_cream() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 581
def mint_cream; Fox.FXRGB(245, 255, 250); end
misty_rose() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 587
def misty_rose; Fox.FXRGB(255, 228, 225); end
misty_rose1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 773
def misty_rose1; Fox.FXRGB(255, 228, 225); end
misty_rose2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 775
def misty_rose2; Fox.FXRGB(238, 213, 210); end
misty_rose3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 777
def misty_rose3; Fox.FXRGB(205, 183, 181); end
misty_rose4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 779
def misty_rose4; Fox.FXRGB(139, 125, 123); end
navajo_white() click to toggle source
navajo_white1() click to toggle source
navajo_white2() click to toggle source
navajo_white3() click to toggle source
navajo_white4() click to toggle source
navy_blue() click to toggle source
old_lace() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 567
def old_lace; Fox.FXRGB(253, 245, 230); end
olive_drab() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 679
def olive_drab; Fox.FXRGB(107, 142,  35); end
olive_drab1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 925
def olive_drab1; Fox.FXRGB(192, 255,  62); end
olive_drab2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 927
def olive_drab2; Fox.FXRGB(179, 238,  58); end
olive_drab3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 929
def olive_drab3; Fox.FXRGB(154, 205,  50); end
olive_drab4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 931
def olive_drab4; Fox.FXRGB(105, 139,  34); end
orange() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1091
def orange; Fox.FXRGB(255, 200, 0); end
orange_red() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 709
def orange_red; Fox.FXRGB(255,  69,   0); end
orange_red1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 997
def orange_red1; Fox.FXRGB(255,  69,   0); end
orange_red2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 999
def orange_red2; Fox.FXRGB(238,  64,   0); end
orange_red3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1001
def orange_red3; Fox.FXRGB(205,  55,   0); end
orange_red4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1003
def orange_red4; Fox.FXRGB(139,  37,   0); end
pale_goldenrod() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 683
def pale_goldenrod; Fox.FXRGB(238, 232, 170); end
pale_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 663
def pale_green; Fox.FXRGB(152, 251, 152); end
pale_green1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 909
def pale_green1; Fox.FXRGB(154, 255, 154); end
pale_green2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 911
def pale_green2; Fox.FXRGB(144, 238, 144); end
pale_green3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 913
def pale_green3; Fox.FXRGB(124, 205, 124); end
pale_green4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 915
def pale_green4; Fox.FXRGB( 84, 139,  84); end
pale_turquoise() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 639
def pale_turquoise; Fox.FXRGB(175, 238, 238); end
pale_turquoise1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 869
def pale_turquoise1; Fox.FXRGB(187, 255, 255); end
pale_turquoise2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 871
def pale_turquoise2; Fox.FXRGB(174, 238, 238); end
pale_turquoise3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 873
def pale_turquoise3; Fox.FXRGB(150, 205, 205); end
pale_turquoise4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 875
def pale_turquoise4; Fox.FXRGB(102, 139, 139); end
pale_violet_red() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 717
def pale_violet_red; Fox.FXRGB(219, 112, 147); end
pale_violet_red1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1029
def pale_violet_red1; Fox.FXRGB(255, 130, 171); end
pale_violet_red2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1031
def pale_violet_red2; Fox.FXRGB(238, 121, 159); end
pale_violet_red3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1033
def pale_violet_red3; Fox.FXRGB(205, 104, 137); end
pale_violet_red4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1035
def pale_violet_red4; Fox.FXRGB(139,  71,  93); end
papaya_whip() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 571
def papaya_whip; Fox.FXRGB(255, 239, 213); end
peach_puff() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 575
def peach_puff; Fox.FXRGB(255, 218, 185); end
peach_puff1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 741
def peach_puff1; Fox.FXRGB(255, 218, 185); end
peach_puff2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 743
def peach_puff2; Fox.FXRGB(238, 203, 173); end
peach_puff3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 745
def peach_puff3; Fox.FXRGB(205, 175, 149); end
peach_puff4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 747
def peach_puff4; Fox.FXRGB(139, 119, 101); end
pink() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1089
def pink; Fox.FXRGB(255, 175, 175); end
powder_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 637
def powder_blue; Fox.FXRGB(176, 224, 230); end
red() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1087
def red; Fox.FXRGB(255, 0, 0); end
rosy_brown() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 693
def rosy_brown; Fox.FXRGB(188, 143, 143); end
rosy_brown1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 965
def rosy_brown1; Fox.FXRGB(255, 193, 193); end
rosy_brown2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 967
def rosy_brown2; Fox.FXRGB(238, 180, 180); end
rosy_brown3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 969
def rosy_brown3; Fox.FXRGB(205, 155, 155); end
rosy_brown4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 971
def rosy_brown4; Fox.FXRGB(139, 105, 105); end
royal_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 621
def royal_blue; Fox.FXRGB( 65, 105, 225); end
royal_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 789
def royal_blue1; Fox.FXRGB( 72, 118, 255); end
royal_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 791
def royal_blue2; Fox.FXRGB( 67, 110, 238); end
royal_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 793
def royal_blue3; Fox.FXRGB( 58,  95, 205); end
royal_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 795
def royal_blue4; Fox.FXRGB( 39,  64, 139); end
saddle_brown() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 697
def saddle_brown; Fox.FXRGB(139,  69,  19); end
sandy_brown() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 699
def sandy_brown; Fox.FXRGB(244, 164,  96); end
sea_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 657
def sea_green; Fox.FXRGB( 46, 139,  87); end
sea_green1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 901
def sea_green1; Fox.FXRGB( 84, 255, 159); end
sea_green2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 903
def sea_green2; Fox.FXRGB( 78, 238, 148); end
sea_green3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 905
def sea_green3; Fox.FXRGB( 67, 205, 128); end
sea_green4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 907
def sea_green4; Fox.FXRGB( 46, 139,  87); end
sky_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 627
def sky_blue; Fox.FXRGB(135, 206, 235); end
sky_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 821
def sky_blue1; Fox.FXRGB(135, 206, 255); end
sky_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 823
def sky_blue2; Fox.FXRGB(126, 192, 238); end
sky_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 825
def sky_blue3; Fox.FXRGB(108, 166, 205); end
sky_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 827
def sky_blue4; Fox.FXRGB( 74, 112, 139); end
slate_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 613
def slate_blue; Fox.FXRGB(106,  90, 205); end
slate_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 781
def slate_blue1; Fox.FXRGB(131, 111, 255); end
slate_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 783
def slate_blue2; Fox.FXRGB(122, 103, 238); end
slate_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 785
def slate_blue3; Fox.FXRGB(105,  89, 205); end
slate_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 787
def slate_blue4; Fox.FXRGB( 71,  60, 139); end
slate_gray() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 597
def slate_gray; Fox.FXRGB(112, 128, 144); end
slate_gray1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 837
def slate_gray1; Fox.FXRGB(198, 226, 255); end
slate_gray2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 839
def slate_gray2; Fox.FXRGB(185, 211, 238); end
slate_gray3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 841
def slate_gray3; Fox.FXRGB(159, 182, 205); end
slate_gray4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 843
def slate_gray4; Fox.FXRGB(108, 123, 139); end
slate_grey() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 599
def slate_grey; Fox.FXRGB(112, 128, 144); end
spring_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 665
def spring_green; Fox.FXRGB(  0, 255, 127); end
spring_green1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 917
def spring_green1; Fox.FXRGB(  0, 255, 127); end
spring_green2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 919
def spring_green2; Fox.FXRGB(  0, 238, 118); end
spring_green3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 921
def spring_green3; Fox.FXRGB(  0, 205, 102); end
spring_green4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 923
def spring_green4; Fox.FXRGB(  0, 139,  69); end
steel_blue() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 631
def steel_blue; Fox.FXRGB( 70, 130, 180); end
steel_blue1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 805
def steel_blue1; Fox.FXRGB( 99, 184, 255); end
steel_blue2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 807
def steel_blue2; Fox.FXRGB( 92, 172, 238); end
steel_blue3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 809
def steel_blue3; Fox.FXRGB( 79, 148, 205); end
steel_blue4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 811
def steel_blue4; Fox.FXRGB( 54, 100, 139); end
violet_red() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 721
def violet_red; Fox.FXRGB(208,  32, 144); end
violet_red1() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1037
def violet_red1; Fox.FXRGB(255,  62, 150); end
violet_red2() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1039
def violet_red2; Fox.FXRGB(238,  58, 140); end
violet_red3() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1041
def violet_red3; Fox.FXRGB(205,  50, 120); end
violet_red4() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1043
def violet_red4; Fox.FXRGB(139,  34,  82); end
white() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1083
def white; Fox.FXRGB(255, 255, 255); end
white_smoke() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 563
def white_smoke; Fox.FXRGB(245, 245, 245); end
yellow() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 1093
def yellow; Fox.FXRGB(255, 255, 0); end
yellow_green() click to toggle source
# File lib/fxruby-enhancement/color-mapper.rb, line 675
def yellow_green; Fox.FXRGB(154, 205,  50); end