Difference between revisions of "Category:Colors"
(15 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
__NOTOC__ | __NOTOC__ | ||
==USING COLORS== | ==USING COLORS== | ||
− | CoffeeMUD supports the base 16 ANSI and the ANSI 256 colors. Color display can be disabled, or set to base ANSI or ANSI256 colors with the [[ANSI]] and [[NOANSI]] commands. To use an ANSI color in the description of an item (or while using the [[Writing]] skill), precede the text string with the color code (and no space). It is always best to end each colored string with the ending code of ^? to prevent color bleed into subsequent text. For ANSI 256 colors, the color code is started with ^# and then a 3 digit base 6 code for Red-Green-Blue completes the code. | + | CoffeeMUD supports the base 16 ANSI and the ANSI 256 colors. Color display can be disabled, or set to base ANSI or ANSI256 colors with the [[ANSI]] and [[NOANSI]] commands. To use an ANSI color in the description of an item (or while using the [[Skill_Write|Writing]] skill), precede the text string with the color code (and no space). It is always best to end each colored string with the ending code of ^? to prevent color bleed into subsequent text. For ANSI 256 colors, the color code is started with ^# and then a 3 digit base 6 code for Red-Green-Blue completes the code. Since your client may interpret colors a little differently, below is the baseline sample of colors (and the colors you will see in Siplet). |
===ANSI COLORS=== | ===ANSI COLORS=== | ||
{| style="border: 1px solid #c6c9ff; border-collapse: collapse;" cellspacing="0" cellpadding="1" border="1" width="60%" <div class="Left" style="width: auto; Margin-left: auto; margin-right: auto;"> | {| style="border: 1px solid #c6c9ff; border-collapse: collapse;" cellspacing="0" cellpadding="1" border="1" width="60%" <div class="Left" style="width: auto; Margin-left: auto; margin-right: auto;"> | ||
|- | |- | ||
− | ! Code | + | ! Foreground Code |
+ | ! Background Code | ||
! Name | ! Name | ||
! Fancy Name | ! Fancy Name | ||
+ | ! Sample | ||
+ | ! HEX Code | ||
|- | |- | ||
+ | | No Code | ||
| No Code | | No Code | ||
| black | | black | ||
| black | | black | ||
+ | | style="background:#000000" | | ||
+ | | #000000 | ||
|- | |- | ||
| ^R | | ^R | ||
+ | | No Code | ||
| maroon | | maroon | ||
| maroon | | maroon | ||
+ | | style="background:#800000" | | ||
+ | | #800000 | ||
|- | |- | ||
| ^G | | ^G | ||
+ | | No Code | ||
| dark green | | dark green | ||
| forest green | | forest green | ||
+ | | style="background:#008000" | | ||
+ | | #008000 | ||
|- | |- | ||
| ^Y | | ^Y | ||
+ | | No Code | ||
| brown | | brown | ||
| olive-green | | olive-green | ||
+ | | style="background:#808000" | | ||
+ | | #808000 | ||
|- | |- | ||
| ^B | | ^B | ||
+ | | No Code | ||
| dark blue | | dark blue | ||
| navy-blue | | navy-blue | ||
+ | | style="background:#000080" | | ||
+ | | #000080 | ||
|- | |- | ||
| ^P | | ^P | ||
+ | | No Code | ||
| purple | | purple | ||
| purple | | purple | ||
+ | | style="background:#800080" | | ||
+ | | #800080 | ||
|- | |- | ||
− | | ^ | + | | ^C |
+ | | No Code | ||
| cyan | | cyan | ||
| teal | | teal | ||
+ | | style="background:#008080" | | ||
+ | | #008080 | ||
|- | |- | ||
| ^W | | ^W | ||
+ | | ^~W | ||
| silvery | | silvery | ||
| silver-colored | | silver-colored | ||
+ | | style="background:#c0c0c0" | | ||
+ | | #c0c0c0 | ||
|- | |- | ||
+ | | ^k | ||
| No Code | | No Code | ||
| grey | | grey | ||
| grey | | grey | ||
+ | | style="background:#808080" | | ||
+ | | #808080 | ||
|- | |- | ||
| ^r | | ^r | ||
+ | | ^~r | ||
| red | | red | ||
| red | | red | ||
+ | | style="background:#ff0000" | | ||
+ | | #ff0000 | ||
|- | |- | ||
| ^g | | ^g | ||
+ | | ^~g | ||
| green | | green | ||
| lime green | | lime green | ||
+ | | style="background:#00ff00" | | ||
+ | | #00ff00 | ||
|- | |- | ||
| ^y | | ^y | ||
+ | | ^~y | ||
| yellow | | yellow | ||
| yellow | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | | #ffff00 | ||
|- | |- | ||
| ^b | | ^b | ||
+ | | ^~b | ||
| blue | | blue | ||
| blue | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | | #0000ff | ||
|- | |- | ||
| ^p | | ^p | ||
+ | | ^~p | ||
| fuchsia | | fuchsia | ||
| fuchsia | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | | #ff00ff | ||
|- | |- | ||
| ^c | | ^c | ||
+ | | ^~c | ||
| aqua | | aqua | ||
| aqua | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | | #00ffff | ||
|- | |- | ||
| ^w | | ^w | ||
+ | | ^~w or ^~k | ||
| white | | white | ||
| white | | white | ||
+ | | style="background:#ffffff" | | ||
+ | | #ffffff | ||
|} | |} | ||
===ANSI 256 COLORS=== | ===ANSI 256 COLORS=== | ||
+ | These color codes can be used regardless of the author's [[ANSI]] configuration. Users who have ANSI disabled, will not see any colors. Users with ANSI 16 will see the color from the ANSI color table above, instead. Users with ANSI 256 enabled will see the listed color, with some possible variation due to the way the client interprets the color. | ||
+ | |||
+ | To use a background ANSI256 color, use a "|" instead of the "#" in the code. | ||
+ | ; Example : Cerulean is code ^#023 for text(foreground), and ^|023 for highlight(background). | ||
{| style="border: 1px solid #c6c9ff; border-collapse: collapse;" cellspacing="0" cellpadding="1" border="1" width="60%" <div class="Left" style="width: auto; Margin-left: auto; margin-right: auto;"> | {| style="border: 1px solid #c6c9ff; border-collapse: collapse;" cellspacing="0" cellpadding="1" border="1" width="60%" <div class="Left" style="width: auto; Margin-left: auto; margin-right: auto;"> | ||
Line 82: | Line 137: | ||
! Name | ! Name | ||
! Fancy Name | ! Fancy Name | ||
− | + | ! ANSI256 Display | |
+ | ! HEX Code | ||
+ | ! ANSI16 | ||
+ | ! Alt | ||
+ | |- | ||
| ^#000 | | ^#000 | ||
| black | | black | ||
| vader-black | | vader-black | ||
− | " | + | | style="background:#000000" | |
− | "|- | + | | #000000 |
+ | | black | ||
+ | | style="background:#000000" | | ||
+ | |- | ||
| ^#001 | | ^#001 | ||
| deep blue | | deep blue | ||
| midnight-blue | | midnight-blue | ||
− | " | + | | style="background:#00005f" | |
− | "|- | + | | #00005f |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#002 | | ^#002 | ||
| very dark blue | | very dark blue | ||
| cobalt-blue | | cobalt-blue | ||
− | " | + | | style="background:#000087" | |
− | "|- | + | | #000087 |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#003 | | ^#003 | ||
| strong dark blue | | strong dark blue | ||
| hooloovoo-blue | | hooloovoo-blue | ||
− | " | + | | style="background:#0000af" | |
− | "|- | + | | #0000af |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#004 | | ^#004 | ||
| vivid blue | | vivid blue | ||
| ravenclaw-blue | | ravenclaw-blue | ||
− | " | + | | style="background:#0000d7" | |
− | "|- | + | | #0000d7 |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#005 | | ^#005 | ||
| luminous vivid blue | | luminous vivid blue | ||
| valenthian-blue | | valenthian-blue | ||
− | " | + | | style="background:#0000ff" | |
− | "|- | + | | #0000ff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#010 | | ^#010 | ||
| deep green | | deep green | ||
| emerald-green | | emerald-green | ||
− | " | + | | style="background:#005f00" | |
− | "|- | + | | #005f00 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#011 | | ^#011 | ||
| deep cyan | | deep cyan | ||
| hernadonian-teal | | hernadonian-teal | ||
− | " | + | | style="background:#005f5f" | |
− | "|- | + | | #005f5f |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#012 | | ^#012 | ||
| strong cerulean | | strong cerulean | ||
| steel-blue | | steel-blue | ||
− | " | + | | style="background:#005f87" | |
− | "|- | + | | #005f87 |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#013 | | ^#013 | ||
| strong azure | | strong azure | ||
| tardis-blue | | tardis-blue | ||
− | " | + | | style="background:#005faf" | |
− | "|- | + | | #005faf |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#014 | | ^#014 | ||
| vivid azure | | vivid azure | ||
| dodger-blue | | dodger-blue | ||
− | " | + | | style="background:#005fd7" | |
− | "|- | + | | #005fd7 |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#015 | | ^#015 | ||
| luminous vivid cobalt blue | | luminous vivid cobalt blue | ||
| cobalt-blue | | cobalt-blue | ||
− | " | + | | style="background:#005fff" | |
− | "|- | + | | #005fff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#020 | | ^#020 | ||
| emerald green | | emerald green | ||
| slytherin-green | | slytherin-green | ||
− | " | + | | style="background:#008700" | |
− | "|- | + | | #008700 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#021 | | ^#021 | ||
| strong turquoise-colored | | strong turquoise-colored | ||
| eucalyptus-colored | | eucalyptus-colored | ||
− | " | + | | style="background:#00875f" | |
− | "|- | + | | #00875f |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#022 | | ^#022 | ||
| strong artic blue | | strong artic blue | ||
| cadet-blue | | cadet-blue | ||
− | " | + | | style="background:#008787" | |
− | "|- | + | | #008787 |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#023 | | ^#023 | ||
| cerulean | | cerulean | ||
| cerulean | | cerulean | ||
− | " | + | | style="background:#0087af" | |
− | "|- | + | | #0087af |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#024 | | ^#024 | ||
| vivid cornflower blue | | vivid cornflower blue | ||
| lochmara-blue | | lochmara-blue | ||
− | " | + | | style="background:#0087d7" | |
− | "|- | + | | #0087d7 |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#025 | | ^#025 | ||
| luminous vivid azure | | luminous vivid azure | ||
| azure | | azure | ||
− | " | + | | style="background:#0087ff" | |
− | "|- | + | | #0087ff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#030 | | ^#030 | ||
| strong green | | strong green | ||
| kelly-green | | kelly-green | ||
− | " | + | | style="background:#00af00" | |
− | "|- | + | | #00af00 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#031 | | ^#031 | ||
| strong spring green | | strong spring green | ||
| jade-colored | | jade-colored | ||
− | " | + | | style="background:#00af5f" | |
− | "|- | + | | #00af5f |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#032 | | ^#032 | ||
| turquoise-colored | | turquoise-colored | ||
| thalosian-green | | thalosian-green | ||
− | " | + | | style="background:#00af87" | |
− | "|- | + | | #00af87 |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#033 | | ^#033 | ||
| strong cyan | | strong cyan | ||
| celadon | | celadon | ||
− | " | + | | style="background:#00afaf" | |
− | "|- | + | | #00afaf |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#034 | | ^#034 | ||
| vivid artic blue | | vivid artic blue | ||
| artic-blue | | artic-blue | ||
− | " | + | | style="background:#00afd7" | |
− | "|- | + | | #00afd7 |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#035 | | ^#035 | ||
| lumionus vivid cornflower blue | | lumionus vivid cornflower blue | ||
| azure-radiance | | azure-radiance | ||
− | " | + | | style="background:#00afff" | |
− | "|- | + | | #00afff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#040 | | ^#040 | ||
| vivid green | | vivid green | ||
| shamrock-green | | shamrock-green | ||
− | " | + | | style="background:#00d700" | |
− | "|- | + | | #00d700 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#041 | | ^#041 | ||
| vivid spring green | | vivid spring green | ||
| spring-green | | spring-green | ||
− | " | + | | style="background:#00d75f" | |
− | "|- | + | | #00d75f |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#042 | | ^#042 | ||
| vivid aquamarine-colored | | vivid aquamarine-colored | ||
| caribbean-green | | caribbean-green | ||
− | " | + | | style="background:#00d787" | |
− | "|- | + | | #00d787 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#043 | | ^#043 | ||
| vivid opal | | vivid opal | ||
| opal-colored | | opal-colored | ||
− | " | + | | style="background:#00d7af" | |
− | "|- | + | | #00d7af |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#044 | | ^#044 | ||
| vivid cyan | | vivid cyan | ||
| downy-blue | | downy-blue | ||
− | " | + | | style="background:#00d7d7" | |
− | "|- | + | | #00d7d7 |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#045 | | ^#045 | ||
| luminious vivid artic blue | | luminious vivid artic blue | ||
| turquoisey-colored | | turquoisey-colored | ||
− | " | + | | style="background:#00d7ff" | |
− | "|- | + | | #00d7ff |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#050 | | ^#050 | ||
| luminous vivid green | | luminous vivid green | ||
| harlequin-green | | harlequin-green | ||
− | " | + | | style="background:#00ff00" | |
− | "|- | + | | #00ff00 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#051 | | ^#051 | ||
| luminous vivid sea green | | luminous vivid sea green | ||
| malachite-green | | malachite-green | ||
− | " | + | | style="background:#00ff5f" | |
− | "|- | + | | #00ff5f |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#052 | | ^#052 | ||
| luminous vivid spring green | | luminous vivid spring green | ||
| Medium-spring-green | | Medium-spring-green | ||
− | " | + | | style="background:#00ff87" | |
− | "|- | + | | #00ff87 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#053 | | ^#053 | ||
| luminous vivid aquamarine-colored | | luminous vivid aquamarine-colored | ||
| scandal-green | | scandal-green | ||
− | " | + | | style="background:#00ffaf" | |
− | "|- | + | | #00ffaf |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#054 | | ^#054 | ||
| luminoius vivid opal | | luminoius vivid opal | ||
| java-colored | | java-colored | ||
− | " | + | | style="background:#00ffd7" | |
− | "|- | + | | #00ffd7 |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#055 | | ^#055 | ||
| luminous vivid cyan | | luminous vivid cyan | ||
| cyan | | cyan | ||
− | " | + | | style="background:#00ffff" | |
− | "|- | + | | #00ffff |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#100 | | ^#100 | ||
| deep reddish brown | | deep reddish brown | ||
| scarlet | | scarlet | ||
− | " | + | | style="background:#5f0000" | |
− | "|- | + | | #5f0000 |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#101 | | ^#101 | ||
| deep magenta | | deep magenta | ||
| eggplant-colored | | eggplant-colored | ||
− | " | + | | style="background:#5f005f" | |
− | "|- | + | | #5f005f |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#102 | | ^#102 | ||
| strong mulberry | | strong mulberry | ||
| pigment-indigo | | pigment-indigo | ||
− | " | + | | style="background:#5f0087" | |
− | "|- | + | | #5f0087 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#103 | | ^#103 | ||
| strong violet | | strong violet | ||
| indigo | | indigo | ||
− | " | + | | style="background:#5f00af" | |
− | "|- | + | | #5f00af |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#104 | | ^#104 | ||
| vivid violet | | vivid violet | ||
| purple-iris-colored | | purple-iris-colored | ||
− | " | + | | style="background:#5f00d7" | |
− | "|- | + | | #5f00d7 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#105 | | ^#105 | ||
| luminous vivid blue Violet | | luminous vivid blue Violet | ||
| blueviolet | | blueviolet | ||
− | " | + | | style="background:#5f00ff" | |
− | "|- | + | | #5f00ff |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#110 | | ^#110 | ||
| deep olive-colored | | deep olive-colored | ||
| citron-green | | citron-green | ||
− | " | + | | style="background:#5f5f00" | |
− | "|- | + | | #5f5f00 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#111 | | ^#111 | ||
| dark gray | | dark gray | ||
| taupe | | taupe | ||
− | " | + | | style="background:#5f5f5f" | |
− | "|- | + | | #5f5f5f |
+ | | grey | ||
+ | | style="background:#808080" | | ||
+ | |- | ||
| ^#112 | | ^#112 | ||
| grayish blue | | grayish blue | ||
| comet-grey | | comet-grey | ||
− | " | + | | style="background:#5f5f87" | |
− | "|- | + | | #5f5f87 |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#113 | | ^#113 | ||
| light grayish blue | | light grayish blue | ||
| scampi-blue | | scampi-blue | ||
− | " | + | | style="background:#5f5faf" | |
− | "|- | + | | #5f5faf |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#114 | | ^#114 | ||
| light blue | | light blue | ||
| delphinium-blue | | delphinium-blue | ||
− | " | + | | style="background:#5f5fd7" | |
− | "|- | + | | #5f5fd7 |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#115 | | ^#115 | ||
| light brilliant blue | | light brilliant blue | ||
| periwinkle | | periwinkle | ||
− | " | + | | style="background:#5f5fff" | |
− | "|- | + | | #5f5fff |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#120 | | ^#120 | ||
| strong lime colored | | strong lime colored | ||
| olive-drab | | olive-drab | ||
− | " | + | | style="background:#5f8700" | |
− | "|- | + | | #5f8700 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#121 | | ^#121 | ||
| grayish green | | grayish green | ||
| sage-green | | sage-green | ||
− | " | + | | style="background:#5f875f" | |
− | "|- | + | | #5f875f |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#122 | | ^#122 | ||
| grayish cyan | | grayish cyan | ||
| juniper-grey | | juniper-grey | ||
− | " | + | | style="background:#5f8787" | |
− | "|- | + | | #5f8787 |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#123 | | ^#123 | ||
| grayish azure | | grayish azure | ||
| steel-blue | | steel-blue | ||
− | " | + | | style="background:#5f87af" | |
− | "|- | + | | #5f87af |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#124 | | ^#124 | ||
| light cobalt blue | | light cobalt blue | ||
| sapphire-blue | | sapphire-blue | ||
− | " | + | | style="background:#5f87d7" | |
− | "|- | + | | #5f87d7 |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#125 | | ^#125 | ||
| light brilliant sapphire blue | | light brilliant sapphire blue | ||
| cornflower-blue | | cornflower-blue | ||
− | " | + | | style="background:#5f87ff" | |
− | "|- | + | | #5f87ff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#130 | | ^#130 | ||
| strong chartreuse green | | strong chartreuse green | ||
| limeade-green | | limeade-green | ||
− | " | + | | style="background:#5faf00" | |
− | "|- | + | | #5faf00 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#131 | | ^#131 | ||
| light grayish green | | light grayish green | ||
| thussevy-green | | thussevy-green | ||
− | " | + | | style="background:#5faf5f" | |
− | "|- | + | | #5faf5f |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#132 | | ^#132 | ||
| grayish spring green | | grayish spring green | ||
| silvertree-colored | | silvertree-colored | ||
− | " | + | | style="background:#5faf87" | |
− | "|- | + | | #5faf87 |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#133 | | ^#133 | ||
| light grayish cyan | | light grayish cyan | ||
| tradewind-blue | | tradewind-blue | ||
− | " | + | | style="background:#5fafaf" | |
− | "|- | + | | #5fafaf |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#134 | | ^#134 | ||
| light cornflower blue | | light cornflower blue | ||
| shakespeare-blue | | shakespeare-blue | ||
− | " | + | | style="background:#5fafd7" | |
− | "|- | + | | #5fafd7 |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#135 | | ^#135 | ||
| light brilliant azure | | light brilliant azure | ||
| ice-blue | | ice-blue | ||
− | " | + | | style="background:#5fafff" | |
− | "|- | + | | #5fafff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#140 | | ^#140 | ||
| vivid chartreuse green | | vivid chartreuse green | ||
| bahia-green | | bahia-green | ||
− | " | + | | style="background:#5fd700" | |
− | "|- | + | | #5fd700 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#141 | | ^#141 | ||
| light green | | light green | ||
| mantis-green | | mantis-green | ||
− | " | + | | style="background:#5fd75f" | |
− | "|- | + | | #5fd75f |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#142 | | ^#142 | ||
| light sea green | | light sea green | ||
| sea-green | | sea-green | ||
− | " | + | | style="background:#5fd787" | |
− | "|- | + | | #5fd787 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#143 | | ^#143 | ||
| light aquamarine-colored | | light aquamarine-colored | ||
| aquamarine-colored | | aquamarine-colored | ||
− | " | + | | style="background:#5fd7af" | |
− | "|- | + | | #5fd7af |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#144 | | ^#144 | ||
| lightish cyan | | lightish cyan | ||
| viking-blue | | viking-blue | ||
− | " | + | | style="background:#5fd7d7" | |
− | "|- | + | | #5fd7d7 |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#145 | | ^#145 | ||
| light brilliant cerulean | | light brilliant cerulean | ||
| tiffany-blue | | tiffany-blue | ||
− | " | + | | style="background:#5fd7ff" | |
− | "|- | + | | #5fd7ff |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#150 | | ^#150 | ||
| luminous vivid pistachio | | luminous vivid pistachio | ||
| pistachio-colored | | pistachio-colored | ||
− | " | + | | style="background:#5fff00" | |
− | "|- | + | | #5fff00 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#151 | | ^#151 | ||
| light brilliant green | | light brilliant green | ||
| screaming-green | | screaming-green | ||
− | " | + | | style="background:#5fff5f" | |
− | "|- | + | | #5fff5f |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#152 | | ^#152 | ||
| light brilliant malachite green | | light brilliant malachite green | ||
| tidal-green | | tidal-green | ||
− | " | + | | style="background:#5fff87" | |
− | "|- | + | | #5fff87 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#153 | | ^#153 | ||
| light brilliant spring green | | light brilliant spring green | ||
| moss-green | | moss-green | ||
− | " | + | | style="background:#5fffaf" | |
− | "|- | + | | #5fffaf |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#154 | | ^#154 | ||
| light brilliant turquoise-colored | | light brilliant turquoise-colored | ||
| powder-blue | | powder-blue | ||
− | " | + | | style="background:#5fffd7" | |
− | "|- | + | | #5fffd7 |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#155 | | ^#155 | ||
| light brilliant cyan | | light brilliant cyan | ||
| spray-cyan | | spray-cyan | ||
− | " | + | | style="background:#5fffff" | |
− | "|- | + | | #5fffff |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#200 | | ^#200 | ||
| strong red | | strong red | ||
| burgundy | | burgundy | ||
− | " | + | | style="background:#870000" | |
− | "|- | + | | #870000 |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#201 | | ^#201 | ||
| strong fuchsia | | strong fuchsia | ||
| boysenberry-colored | | boysenberry-colored | ||
− | " | + | | style="background:#87005f" | |
− | "|- | + | | #87005f |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#202 | | ^#202 | ||
| strong purplish magenta | | strong purplish magenta | ||
| camelot-purple | | camelot-purple | ||
− | " | + | | style="background:#870087" | |
− | "|- | + | | #870087 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#203 | | ^#203 | ||
| strong light mulberry | | strong light mulberry | ||
| mulberry-colored | | mulberry-colored | ||
− | " | + | | style="background:#8700af" | |
− | "|- | + | | #8700af |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#204 | | ^#204 | ||
| vivid purple | | vivid purple | ||
| violet | | violet | ||
− | " | + | | style="background:#8700d7" | |
− | "|- | + | | #8700d7 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#205 | | ^#205 | ||
| luminous vivid violet | | luminous vivid violet | ||
| electric-violet | | electric-violet | ||
− | " | + | | style="background:#8700ff" | |
− | "|- | + | | #8700ff |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#210 | | ^#210 | ||
| strong amber | | strong amber | ||
| browncoat-colored | | browncoat-colored | ||
− | " | + | | style="background:#875f00" | |
− | "|- | + | | #875f00 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#211 | | ^#211 | ||
| grayish red | | grayish red | ||
| copper-rose-colored | | copper-rose-colored | ||
− | " | + | | style="background:#875f5f" | |
− | "|- | + | | #875f5f |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#212 | | ^#212 | ||
| grayish magenta | | grayish magenta | ||
| strikemaster-plum | | strikemaster-plum | ||
− | " | + | | style="background:#875f87" | |
− | "|- | + | | #875f87 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#213 | | ^#213 | ||
| grayish violet | | grayish violet | ||
| mauve | | mauve | ||
− | " | + | | style="background:#875faf" | |
− | "|- | + | | #875faf |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#214 | | ^#214 | ||
| light blue violet | | light blue violet | ||
| tananite | | tananite | ||
− | " | + | | style="background:#875fd7" | |
− | "|- | + | | #875fd7 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#215 | | ^#215 | ||
| light brilliant indigo | | light brilliant indigo | ||
| amethyst-colored | | amethyst-colored | ||
− | " | + | | style="background:#875fff" | |
− | "|- | + | | #875fff |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#220 | | ^#220 | ||
| strong olive-colored | | strong olive-colored | ||
| olive-colored | | olive-colored | ||
− | " | + | | style="background:#878700" | |
− | "|- | + | | #878700 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#221 | | ^#221 | ||
| grayish olive-colored | | grayish olive-colored | ||
| clay-creek-colored | | clay-creek-colored | ||
− | " | + | | style="background:#87875f" | |
− | "|- | + | | #87875f |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#222 | | ^#222 | ||
| medium gray | | medium gray | ||
| dim-grey | | dim-grey | ||
− | " | + | | style="background:#878787" | |
− | "|- | + | | #878787 |
+ | | silvery | ||
+ | | style="background:#c0c0c0" | | ||
+ | |- | ||
| ^#223 | | ^#223 | ||
| blue grey | | blue grey | ||
| wild-blue-yonder | | wild-blue-yonder | ||
− | " | + | | style="background:#8787af" | |
− | "|- | + | | #8787af |
+ | | dark blue | ||
+ | | style="background:#000080" | | ||
+ | |- | ||
| ^#224 | | ^#224 | ||
| light pale grey blue | | light pale grey blue | ||
| chetwode-blue | | chetwode-blue | ||
− | " | + | | style="background:#8787d7" | |
− | "|- | + | | #8787d7 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#225 | | ^#225 | ||
| very light blue | | very light blue | ||
| malibu-blue | | malibu-blue | ||
− | " | + | | style="background:#8787ff" | |
− | "|- | + | | #8787ff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#230 | | ^#230 | ||
| strong lime green | | strong lime green | ||
| lime-green | | lime-green | ||
− | " | + | | style="background:#87af00" | |
− | "|- | + | | #87af00 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#231 | | ^#231 | ||
| grayish chartreuse green | | grayish chartreuse green | ||
| asparagus-colored | | asparagus-colored | ||
− | " | + | | style="background:#87af5f" | |
− | "|- | + | | #87af5f |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#232 | | ^#232 | ||
| greenish gray | | greenish gray | ||
| bayleaf-green | | bayleaf-green | ||
− | " | + | | style="background:#87af87" | |
− | "|- | + | | #87af87 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#233 | | ^#233 | ||
| cyanish gray | | cyanish gray | ||
| gulfstream-grey | | gulfstream-grey | ||
− | " | + | | style="background:#87afaf" | |
− | "|- | + | | #87afaf |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#234 | | ^#234 | ||
| pale light grayish azure | | pale light grayish azure | ||
| slate-blue | | slate-blue | ||
− | " | + | | style="background:#87afd7" | |
− | "|- | + | | #87afd7 |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#235 | | ^#235 | ||
| very light cobalt blue | | very light cobalt blue | ||
| sky-blue | | sky-blue | ||
− | " | + | | style="background:#87afff" | |
− | "|- | + | | #87afff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#240 | | ^#240 | ||
| vivid spring bud | | vivid spring bud | ||
| atlantis-green | | atlantis-green | ||
− | " | + | | style="background:#87d700" | |
− | "|- | + | | #87d700 |
+ | | dark green | ||
+ | | style="background:#008000" | | ||
+ | |- | ||
| ^#241 | | ^#241 | ||
| light pistachio | | light pistachio | ||
| fern-green | | fern-green | ||
− | " | + | | style="background:#87d75f" | |
− | "|- | + | | #87d75f |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#242 | | ^#242 | ||
| pale light grayish green | | pale light grayish green | ||
| feijoa-green | | feijoa-green | ||
− | " | + | | style="background:#87d787" | |
− | "|- | + | | #87d787 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#243 | | ^#243 | ||
| pale light grayish spring green | | pale light grayish spring green | ||
| vista-blue | | vista-blue | ||
− | " | + | | style="background:#87d7af" | |
− | "|- | + | | #87d7af |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#244 | | ^#244 | ||
| pale light grayish cyan | | pale light grayish cyan | ||
| bermuda-blue | | bermuda-blue | ||
− | " | + | | style="background:#87d7d7" | |
− | "|- | + | | #87d7d7 |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#245 | | ^#245 | ||
| very light cornflower blue | | very light cornflower blue | ||
| baby-blue | | baby-blue | ||
− | " | + | | style="background:#87d7ff" | |
− | "|- | + | | #87d7ff |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#250 | | ^#250 | ||
| luminous vivid chartreuse green | | luminous vivid chartreuse green | ||
| chartreuse | | chartreuse | ||
− | " | + | | style="background:#87ff00" | |
− | "|- | + | | #87ff00 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#251 | | ^#251 | ||
| light brilliant harlequin | | light brilliant harlequin | ||
| prim-green | | prim-green | ||
− | " | + | | style="background:#87ff5f" | |
− | "|- | + | | #87ff5f |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#252 | | ^#252 | ||
| very light green | | very light green | ||
| mint-green | | mint-green | ||
− | " | + | | style="background:#87ff87" | |
− | "|- | + | | #87ff87 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#253 | | ^#253 | ||
| very light sea green | | very light sea green | ||
| sprout-green | | sprout-green | ||
− | " | + | | style="background:#87ffaf" | |
− | "|- | + | | #87ffaf |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#254 | | ^#254 | ||
| very light aquamarine-colored | | very light aquamarine-colored | ||
| caper-cyan | | caper-cyan | ||
− | " | + | | style="background:#87ffd7" | |
− | "|- | + | | #87ffd7 |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#255 | | ^#255 | ||
| very light cyan | | very light cyan | ||
| seaglass-cyan | | seaglass-cyan | ||
− | " | + | | style="background:#87ffff" | |
− | "|- | + | | #87ffff |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#300 | | ^#300 | ||
| strong scarlet | | strong scarlet | ||
| gryffindor-scarlet | | gryffindor-scarlet | ||
− | " | + | | style="background:#af0000" | |
− | "|- | + | | #af0000 |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#301 | | ^#301 | ||
| strong rose | | strong rose | ||
| red-flirt-colored | | red-flirt-colored | ||
− | " | + | | style="background:#af005f" | |
− | "|- | + | | #af005f |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#302 | | ^#302 | ||
| strong light fuchsia | | strong light fuchsia | ||
| violet-flirt | | violet-flirt | ||
− | " | + | | style="background:#af0087" | |
− | "|- | + | | #af0087 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#303 | | ^#303 | ||
| strong magenta | | strong magenta | ||
| red-violet | | red-violet | ||
− | " | + | | style="background:#af00af" | |
− | "|- | + | | #af00af |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#304 | | ^#304 | ||
| vivid heliotrope | | vivid heliotrope | ||
| cabaret-colored | | cabaret-colored | ||
− | " | + | | style="background:#af00d7" | |
− | "|- | + | | #af00d7 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#305 | | ^#305 | ||
| luminous vivid purple | | luminous vivid purple | ||
| lilac-colored | | lilac-colored | ||
− | " | + | | style="background:#af00ff" | |
− | "|- | + | | #af00ff |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#310 | | ^#310 | ||
| strong orange | | strong orange | ||
| beige | | beige | ||
− | " | + | | style="background:#af5f00" | |
− | "|- | + | | #af5f00 |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#311 | | ^#311 | ||
| light grayish red | | light grayish red | ||
| merlot-colored | | merlot-colored | ||
− | " | + | | style="background:#af5f5f" | |
− | "|- | + | | #af5f5f |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#312 | | ^#312 | ||
| grayish rose | | grayish rose | ||
| tapestry-colored | | tapestry-colored | ||
− | " | + | | style="background:#af5f87" | |
− | "|- | + | | #af5f87 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#313 | | ^#313 | ||
| light grayish magenta | | light grayish magenta | ||
| fuchia-pink | | fuchia-pink | ||
− | " | + | | style="background:#af5faf" | |
− | "|- | + | | #af5faf |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#314 | | ^#314 | ||
| light purple | | light purple | ||
| medium-purple | | medium-purple | ||
− | " | + | | style="background:#af5fd7" | |
− | "|- | + | | #af5fd7 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#315 | | ^#315 | ||
| light brilliant violet | | light brilliant violet | ||
| heliotrope | | heliotrope | ||
− | " | + | | style="background:#af5fff" | |
− | "|- | + | | #af5fff |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#320 | | ^#320 | ||
| strong light amber | | strong light amber | ||
| pirat-golden | | pirat-golden | ||
− | " | + | | style="background:#af8700" | |
− | "|- | + | | #af8700 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#321 | | ^#321 | ||
| grayish brown | | grayish brown | ||
| muesli-colored | | muesli-colored | ||
− | " | + | | style="background:#af875f" | |
− | "|- | + | | #af875f |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#322 | | ^#322 | ||
| reddish gray | | reddish gray | ||
| pharlap-colored | | pharlap-colored | ||
− | " | + | | style="background:#af8787" | |
− | "|- | + | | #af8787 |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#323 | | ^#323 | ||
| magentaish gray | | magentaish gray | ||
| purple-bouquet | | purple-bouquet | ||
− | " | + | | style="background:#af87af" | |
− | "|- | + | | #af87af |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#324 | | ^#324 | ||
| pale light grayish violet | | pale light grayish violet | ||
| lavender-colored | | lavender-colored | ||
− | " | + | | style="background:#af87d7" | |
− | "|- | + | | #af87d7 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#325 | | ^#325 | ||
| very light blue violet | | very light blue violet | ||
| kimian-purple | | kimian-purple | ||
− | " | + | | style="background:#af87ff" | |
− | "|- | + | | #af87ff |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#330 | | ^#330 | ||
| strong light olive-colored | | strong light olive-colored | ||
| golden | | golden | ||
− | " | + | | style="background:#afaf00" | |
− | "|- | + | | #afaf00 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#331 | | ^#331 | ||
| light grayish olive-colored | | light grayish olive-colored | ||
| dark-khaki | | dark-khaki | ||
− | " | + | | style="background:#afaf5f" | |
− | "|- | + | | #afaf5f |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#332 | | ^#332 | ||
| yellowish gray | | yellowish gray | ||
| hillary-brown | | hillary-brown | ||
− | " | + | | style="background:#afaf87" | |
− | "|- | + | | #afaf87 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#333 | | ^#333 | ||
| deep silver (medium gray) | | deep silver (medium gray) | ||
| base-grey | | base-grey | ||
− | " | + | | style="background:#afafaf" | |
− | "|- | + | | #afafaf |
+ | | silvery | ||
+ | | style="background:#c0c0c0" | | ||
+ | |- | ||
| ^#334 | | ^#334 | ||
| light bluish gray | | light bluish gray | ||
| wistful-blue | | wistful-blue | ||
− | " | + | | style="background:#afafd7" | |
− | "|- | + | | #afafd7 |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#335 | | ^#335 | ||
| pale blue | | pale blue | ||
| melrose-colored | | melrose-colored | ||
− | " | + | | style="background:#afafff" | |
− | "|- | + | | #afafff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#340 | | ^#340 | ||
| vivid apple green | | vivid apple green | ||
| green-apple-colored | | green-apple-colored | ||
− | " | + | | style="background:#afd700" | |
− | "|- | + | | #afd700 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#341 | | ^#341 | ||
| light spring bud | | light spring bud | ||
| conifer-green | | conifer-green | ||
− | " | + | | style="background:#afd75f" | |
− | "|- | + | | #afd75f |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#342 | | ^#342 | ||
| pale light grayish chartreuse green | | pale light grayish chartreuse green | ||
| flax-green | | flax-green | ||
− | " | + | | style="background:#afd787" | |
− | "|- | + | | #afd787 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#343 | | ^#343 | ||
| light greenish gray | | light greenish gray | ||
| pixie-green | | pixie-green | ||
− | " | + | | style="background:#afd7af" | |
− | "|- | + | | #afd7af |
+ | | cyan | ||
+ | | style="background:#008080" | | ||
+ | |- | ||
| ^#344 | | ^#344 | ||
| light cyanish gray | | light cyanish gray | ||
| junglemist-blue | | junglemist-blue | ||
− | " | + | | style="background:#afd7d7" | |
− | "|- | + | | #afd7d7 |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#345 | | ^#345 | ||
| pale azure | | pale azure | ||
| clearskies-blue | | clearskies-blue | ||
− | " | + | | style="background:#afd7ff" | |
− | "|- | + | | #afd7ff |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#350 | | ^#350 | ||
| luminous vivid spring bud | | luminous vivid spring bud | ||
| pear-green | | pear-green | ||
− | " | + | | style="background:#afff00" | |
− | "|- | + | | #afff00 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#351 | | ^#351 | ||
| light brilliant chartreuse green | | light brilliant chartreuse green | ||
| green-yellow | | green-yellow | ||
− | " | + | | style="background:#afff5f" | |
− | "|- | + | | #afff5f |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#352 | | ^#352 | ||
| very light pistachio | | very light pistachio | ||
| mindaro-green | | mindaro-green | ||
− | " | + | | style="background:#afff87" | |
− | "|- | + | | #afff87 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#353 | | ^#353 | ||
| very light sap green | | very light sap green | ||
| sulu-green | | sulu-green | ||
− | " | + | | style="background:#afffaf" | |
− | "|- | + | | #afffaf |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#354 | | ^#354 | ||
| pale spring green | | pale spring green | ||
| aero-blue | | aero-blue | ||
− | " | + | | style="background:#afffd7" | |
− | "|- | + | | #afffd7 |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#355 | | ^#355 | ||
| pale cyan | | pale cyan | ||
| robbinegg-blue | | robbinegg-blue | ||
− | " | + | | style="background:#afffff" | |
− | "|- | + | | #afffff |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#400 | | ^#400 | ||
| vivid red | | vivid red | ||
| santa-red | | santa-red | ||
− | " | + | | style="background:#d70000" | |
− | "|- | + | | #d70000 |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#401 | | ^#401 | ||
| vivid rose | | vivid rose | ||
| crimson | | crimson | ||
− | " | + | | style="background:#d7005f" | |
− | "|- | + | | #d7005f |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#402 | | ^#402 | ||
| vivid cerise | | vivid cerise | ||
| carnation-colored | | carnation-colored | ||
− | " | + | | style="background:#d70087" | |
− | "|- | + | | #d70087 |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#403 | | ^#403 | ||
| vivid orchid | | vivid orchid | ||
| cerise | | cerise | ||
− | " | + | | style="background:#d700af" | |
− | "|- | + | | #d700af |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#404 | | ^#404 | ||
| vivid magenta | | vivid magenta | ||
| purple-pizzazz | | purple-pizzazz | ||
− | " | + | | style="background:#d700d7" | |
− | "|- | + | | #d700d7 |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#405 | | ^#405 | ||
| luminous vivid heliotrope | | luminous vivid heliotrope | ||
| pretty-in-pink | | pretty-in-pink | ||
− | " | + | | style="background:#d700ff" | |
− | "|- | + | | #d700ff |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#410 | | ^#410 | ||
| vivid orange | | vivid orange | ||
| tenn-colored | | tenn-colored | ||
− | " | + | | style="background:#d75f00" | |
− | "|- | + | | #d75f00 |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#411 | | ^#411 | ||
| pink | | pink | ||
| Indian-red | | Indian-red | ||
− | " | + | | style="background:#d75f5f" | |
− | "|- | + | | #d75f5f |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#412 | | ^#412 | ||
| light raspberry | | light raspberry | ||
| cranberry-colored | | cranberry-colored | ||
− | " | + | | style="background:#d75f87" | |
− | "|- | + | | #d75f87 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#413 | | ^#413 | ||
| light cerise | | light cerise | ||
| hot-pink | | hot-pink | ||
− | " | + | | style="background:#d75faf" | |
− | "|- | + | | #d75faf |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#414 | | ^#414 | ||
| brilliant orchid | | brilliant orchid | ||
| orchid-colored | | orchid-colored | ||
− | " | + | | style="background:#d75fd7" | |
− | "|- | + | | #d75fd7 |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#415 | | ^#415 | ||
| light brilliant mulberry | | light brilliant mulberry | ||
| wilderberry-colored | | wilderberry-colored | ||
− | " | + | | style="background:#d75fff" | |
− | "|- | + | | #d75fff |
+ | | purple | ||
+ | | style="background:#800080" | | ||
+ | |- | ||
| ^#420 | | ^#420 | ||
| vivid gamboge | | vivid gamboge | ||
| mango-colored | | mango-colored | ||
− | " | + | | style="background:#d78700" | |
− | "|- | + | | #d78700 |
+ | | maroon | ||
+ | | style="background:#800000" | | ||
+ | |- | ||
| ^#421 | | ^#421 | ||
| light tangelo | | light tangelo | ||
| tangelo-colored | | tangelo-colored | ||
− | " | + | | style="background:#d7875f" | |
− | "|- | + | | #d7875f |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#422 | | ^#422 | ||
| pale grayish pink | | pale grayish pink | ||
| salmon-colored | | salmon-colored | ||
− | " | + | | style="background:#d78787" | |
− | "|- | + | | #d78787 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#423 | | ^#423 | ||
| pale light grayish rose | | pale light grayish rose | ||
| dusty-rose-colored | | dusty-rose-colored | ||
− | " | + | | style="background:#d787af" | |
− | "|- | + | | #d787af |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#424 | | ^#424 | ||
| pale light grayish magenta | | pale light grayish magenta | ||
| plum-colored | | plum-colored | ||
− | " | + | | style="background:#d787d7" | |
− | "|- | + | | #d787d7 |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#425 | | ^#425 | ||
| very light purple | | very light purple | ||
| perfume-colored | | perfume-colored | ||
− | " | + | | style="background:#d787ff" | |
− | "|- | + | | #d787ff |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#430 | | ^#430 | ||
| vivid golden | | vivid golden | ||
| filigree-golden | | filigree-golden | ||
− | " | + | | style="background:#d7af00" | |
− | "|- | + | | #d7af00 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#431 | | ^#431 | ||
| light gamboge | | light gamboge | ||
| tacha | | tacha | ||
− | " | + | | style="background:#d7af5f" | |
− | "|- | + | | #d7af5f |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#432 | | ^#432 | ||
| pale light grayish brown | | pale light grayish brown | ||
| tan | | tan | ||
− | " | + | | style="background:#d7af87" | |
− | "|- | + | | #d7af87 |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#433 | | ^#433 | ||
| pinkish gray | | pinkish gray | ||
| clamshell-colored | | clamshell-colored | ||
− | " | + | | style="background:#d7afaf" | |
− | "|- | + | | #d7afaf |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#434 | | ^#434 | ||
| light magentaish gray | | light magentaish gray | ||
| thistle-colored | | thistle-colored | ||
− | " | + | | style="background:#d7afd7" | |
− | "|- | + | | #d7afd7 |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#435 | | ^#435 | ||
| pale violet | | pale violet | ||
| melanie-colored | | melanie-colored | ||
− | " | + | | style="background:#d7afff" | |
− | "|- | + | | #d7afff |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#440 | | ^#440 | ||
| vivid yellow | | vivid yellow | ||
| corn-yellow | | corn-yellow | ||
− | " | + | | style="background:#d7d700" | |
− | "|- | + | | #d7d700 |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#441 | | ^#441 | ||
| light yellow | | light yellow | ||
| khaki | | khaki | ||
− | " | + | | style="background:#d7d75f" | |
− | "|- | + | | #d7d75f |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#442 | | ^#442 | ||
| pale light grayish olive-colored | | pale light grayish olive-colored | ||
| deco-yellow | | deco-yellow | ||
− | " | + | | style="background:#d7d787" | |
− | "|- | + | | #d7d787 |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#443 | | ^#443 | ||
| light yellowish gray | | light yellowish gray | ||
| mist-yellow | | mist-yellow | ||
− | " | + | | style="background:#d7d7af" | |
− | "|- | + | | #d7d7af |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#444 | | ^#444 | ||
| bright silver | | bright silver | ||
| gainsboro-grey | | gainsboro-grey | ||
− | " | + | | style="background:#d7d7d7" | |
− | "|- | + | | #d7d7d7 |
+ | | silvery | ||
+ | | style="background:#c0c0c0" | | ||
+ | |- | ||
| ^#445 | | ^#445 | ||
| very pale blue | | very pale blue | ||
| atat-silver | | atat-silver | ||
− | " | + | | style="background:#d7d7ff" | |
− | "|- | + | | #d7d7ff |
+ | | blue | ||
+ | | style="background:#0000ff" | | ||
+ | |- | ||
| ^#450 | | ^#450 | ||
| luminious vivid yellow | | luminious vivid yellow | ||
| chartreuse-yellow | | chartreuse-yellow | ||
− | " | + | | style="background:#d7ff00" | |
− | "|- | + | | #d7ff00 |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#451 | | ^#451 | ||
| light vivid yellow | | light vivid yellow | ||
| canary-yellow | | canary-yellow | ||
− | " | + | | style="background:#d7ff5f" | |
− | "|- | + | | #d7ff5f |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#452 | | ^#452 | ||
| very light spring bud | | very light spring bud | ||
| honeysuckle-colored | | honeysuckle-colored | ||
− | " | + | | style="background:#d7ff87" | |
− | "|- | + | | #d7ff87 |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#453 | | ^#453 | ||
| pale chartreuse green | | pale chartreuse green | ||
| reef-yellow | | reef-yellow | ||
− | " | + | | style="background:#d7ffaf" | |
− | "|- | + | | #d7ffaf |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#454 | | ^#454 | ||
| very pale green | | very pale green | ||
| snowy-mint-colored | | snowy-mint-colored | ||
− | " | + | | style="background:#d7ffd7" | |
− | "|- | + | | #d7ffd7 |
+ | | green | ||
+ | | style="background:#00ff00" | | ||
+ | |- | ||
| ^#455 | | ^#455 | ||
| light cyan | | light cyan | ||
| oysterbay-blue | | oysterbay-blue | ||
− | " | + | | style="background:#d7ffff" | |
− | "|- | + | | #d7ffff |
+ | | aqua | ||
+ | | style="background:#00ffff" | | ||
+ | |- | ||
| ^#500 | | ^#500 | ||
| luminous vivid red | | luminous vivid red | ||
| cherry-red | | cherry-red | ||
− | " | + | | style="background:#ff0000" | |
− | "|- | + | | #ff0000 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#501 | | ^#501 | ||
| luminous vivid raspberry | | luminous vivid raspberry | ||
| raspberry-red | | raspberry-red | ||
− | " | + | | style="background:#ff005f" | |
− | "|- | + | | #ff005f |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#502 | | ^#502 | ||
| luminous vivid rose | | luminous vivid rose | ||
| razzledazzle-rose-colored | | razzledazzle-rose-colored | ||
− | " | + | | style="background:#ff0087" | |
− | "|- | + | | #ff0087 |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#503 | | ^#503 | ||
| luminous vivid cerise | | luminous vivid cerise | ||
| rose-colored | | rose-colored | ||
− | " | + | | style="background:#ff00af" | |
− | "|- | + | | #ff00af |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#504 | | ^#504 | ||
| luminous vivid orchid | | luminous vivid orchid | ||
| shocking-pink | | shocking-pink | ||
− | " | + | | style="background:#ff00d7" | |
− | "|- | + | | #ff00d7 |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#505 | | ^#505 | ||
| luminous vivid magenta | | luminous vivid magenta | ||
| magenta | | magenta | ||
− | " | + | | style="background:#ff00ff" | |
− | "|- | + | | #ff00ff |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#510 | | ^#510 | ||
| lumnious vivid tangelo | | lumnious vivid tangelo | ||
| burnt-orange | | burnt-orange | ||
− | " | + | | style="background:#ff5f00" | |
− | "|- | + | | #ff5f00 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#511 | | ^#511 | ||
| light brilliant red | | light brilliant red | ||
| bittersweet-red | | bittersweet-red | ||
− | " | + | | style="background:#ff5f5f" | |
− | "|- | + | | #ff5f5f |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#512 | | ^#512 | ||
| light brilliant crimson | | light brilliant crimson | ||
| wild-watermelon-colored | | wild-watermelon-colored | ||
− | " | + | | style="background:#ff5f87" | |
− | "|- | + | | #ff5f87 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#513 | | ^#513 | ||
| light brilliant rose | | light brilliant rose | ||
| wewak-pink | | wewak-pink | ||
− | " | + | | style="background:#ff5faf" | |
− | "|- | + | | #ff5faf |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#514 | | ^#514 | ||
| light brilliant fuchsia | | light brilliant fuchsia | ||
| thalosian-pink | | thalosian-pink | ||
− | " | + | | style="background:#ff5fd7" | |
− | "|- | + | | #ff5fd7 |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#515 | | ^#515 | ||
| light brilliant magenta | | light brilliant magenta | ||
| pink-flamingo-colored | | pink-flamingo-colored | ||
− | " | + | | style="background:#ff5fff" | |
− | "|- | + | | #ff5fff |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#520 | | ^#520 | ||
| luminous vivid orange | | luminous vivid orange | ||
| orange-colored | | orange-colored | ||
− | " | + | | style="background:#ff8700" | |
− | "|- | + | | #ff8700 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#521 | | ^#521 | ||
| light brilliant vermilion | | light brilliant vermilion | ||
| hydrascale-red | | hydrascale-red | ||
− | " | + | | style="background:#ff875f" | |
− | "|- | + | | #ff875f |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#522 | | ^#522 | ||
| light pink | | light pink | ||
| coral-colored | | coral-colored | ||
− | " | + | | style="background:#ff8787" | |
− | "|- | + | | #ff8787 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#523 | | ^#523 | ||
| very light raspberry | | very light raspberry | ||
| pink-salmon | | pink-salmon | ||
− | " | + | | style="background:#ff87af" | |
− | "|- | + | | #ff87af |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#524 | | ^#524 | ||
| very light cerise | | very light cerise | ||
| lavender-rose-colored | | lavender-rose-colored | ||
− | " | + | | style="background:#ff87d7" | |
− | "|- | + | | #ff87d7 |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#525 | | ^#525 | ||
| very light magenta | | very light magenta | ||
| blush-pink | | blush-pink | ||
− | " | + | | style="background:#ff87ff" | |
− | "|- | + | | #ff87ff |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#530 | | ^#530 | ||
| lumionus vivid gamboge | | lumionus vivid gamboge | ||
| butterscotch-colored | | butterscotch-colored | ||
− | " | + | | style="background:#ffaf00" | |
− | "|- | + | | #ffaf00 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#531 | | ^#531 | ||
| light brilliant orange | | light brilliant orange | ||
| orthindar-rose-colored | | orthindar-rose-colored | ||
− | " | + | | style="background:#ffaf5f" | |
− | "|- | + | | #ffaf5f |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#532 | | ^#532 | ||
| very light tangelo | | very light tangelo | ||
| pink-ice | | pink-ice | ||
− | " | + | | style="background:#ffaf87" | |
− | "|- | + | | #ffaf87 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#533 | | ^#533 | ||
| pale pink | | pale pink | ||
| flesh-colored | | flesh-colored | ||
− | " | + | | style="background:#ffafaf" | |
− | "|- | + | | #ffafaf |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#534 | | ^#534 | ||
| pale rose | | pale rose | ||
| pink | | pink | ||
− | " | + | | style="background:#ffafd7" | |
− | "|- | + | | #ffafd7 |
+ | | red | ||
+ | | style="background:#ff0000" | | ||
+ | |- | ||
| ^#535 | | ^#535 | ||
| pale magenta | | pale magenta | ||
| cherub-pink | | cherub-pink | ||
− | " | + | | style="background:#ffafff" | |
− | "|- | + | | #ffafff |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#540 | | ^#540 | ||
| luminous vivid golden | | luminous vivid golden | ||
| golden-hufflepuff | | golden-hufflepuff | ||
− | " | + | | style="background:#ffd700" | |
− | "|- | + | | #ffd700 |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#541 | | ^#541 | ||
| light brilliant amber | | light brilliant amber | ||
| goldernrod | | goldernrod | ||
− | " | + | | style="background:#ffd75f" | |
− | "|- | + | | #ffd75f |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#542 | | ^#542 | ||
| very light gamboge | | very light gamboge | ||
| grandis-yellow | | grandis-yellow | ||
− | " | + | | style="background:#ffd787" | |
− | "|- | + | | #ffd787 |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#543 | | ^#543 | ||
| pale orange | | pale orange | ||
| champagne-colored | | champagne-colored | ||
− | " | + | | style="background:#ffd7af" | |
− | "|- | + | | #ffd7af |
+ | | brown | ||
+ | | style="background:#808000" | | ||
+ | |- | ||
| ^#544 | | ^#544 | ||
| very pale pink | | very pale pink | ||
| mistyrose-colored | | mistyrose-colored | ||
− | " | + | | style="background:#ffd7d7" | |
− | "|- | + | | #ffd7d7 |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#545 | | ^#545 | ||
| very pale magenta | | very pale magenta | ||
| lace-pink | | lace-pink | ||
− | " | + | | style="background:#ffd7ff" | |
− | "|- | + | | #ffd7ff |
+ | | fuchsia | ||
+ | | style="background:#ff00ff" | | ||
+ | |- | ||
| ^#550 | | ^#550 | ||
| luminous vivid yellow | | luminous vivid yellow | ||
| zacarian-yellow | | zacarian-yellow | ||
− | " | + | | style="background:#ffff00" | |
− | "|- | + | | #ffff00 |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#551 | | ^#551 | ||
| light brilliant yellow | | light brilliant yellow | ||
| lemon-colored | | lemon-colored | ||
− | " | + | | style="background:#ffff5f" | |
− | "|- | + | | #ffff5f |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#552 | | ^#552 | ||
| very light yellow | | very light yellow | ||
| yellow-rose-colored | | yellow-rose-colored | ||
− | " | + | | style="background:#ffff87" | |
− | "|- | + | | #ffff87 |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#553 | | ^#553 | ||
| pale yellow | | pale yellow | ||
| vanilla-cream-colored | | vanilla-cream-colored | ||
− | " | + | | style="background:#ffffaf" | |
− | "|- | + | | #ffffaf |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#554 | | ^#554 | ||
| very pale yellow | | very pale yellow | ||
| cornsilk-white | | cornsilk-white | ||
− | " | + | | style="background:#ffffd7" | |
− | "|- | + | | #ffffd7 |
+ | | yellow | ||
+ | | style="background:#ffff00" | | ||
+ | |- | ||
| ^#555 | | ^#555 | ||
| pale white | | pale white | ||
| snow-white | | snow-white | ||
− | " | + | | style="background:#ffffff" | |
+ | | #ffffff | ||
+ | | white | ||
+ | | style="background:#ffffff" | | ||
+ | |} | ||
+ | |||
+ | ===Special Color Codes=== | ||
+ | Below are a list of the standard color codes for CoffeeMud. You may display this list with the AHELP COLORS command. | ||
+ | |||
+ | {| style="border: 1px solid #c6c9ff; border-collapse: collapse;" cellspacing="0" cellpadding="1" border="1" width="60%" <div class="Left" style="width: auto; Margin-left: auto; margin-right: auto;"> | ||
+ | |- | ||
+ | ! Code | ||
+ | ! Definition | ||
+ | ! Notes | ||
+ | |- | ||
+ | | ^N | ||
+ | | Normal | ||
+ | | Resets to mud-default (white) | ||
+ | |- | ||
+ | | ^! | ||
+ | | Bold | ||
+ | | | ||
+ | |- | ||
+ | | ^H | ||
+ | | Highlight | ||
+ | | The [[COLORSET]] color defined for Highlight | ||
+ | |- | ||
+ | | ^_ | ||
+ | | Underline | ||
+ | | | ||
+ | |- | ||
+ | | ^/ | ||
+ | | Italics | ||
+ | | | ||
+ | |- | ||
+ | | ^. | ||
+ | | Reset (turns off reverse) | ||
+ | | | ||
+ | |- | ||
+ | | ^^ | ||
+ | | Generates an untranslated "^" character | ||
+ | | | ||
+ | |- | ||
+ | | ^? | ||
+ | | Restores previous color | ||
+ | | | ||
+ | |- | ||
+ | | ^f | ||
+ | | You-Fight | ||
+ | | The [[COLORSET]] color defined for Your Fight Text | ||
+ | |- | ||
+ | | ^e | ||
+ | | Fight-You | ||
+ | | The [[COLORSET]] color defined for Fighting You Text | ||
+ | |- | ||
+ | | ^F | ||
+ | | Fight | ||
+ | | The [[COLORSET]] color defined for Other Fight Text | ||
+ | |- | ||
+ | | ^S | ||
+ | | Spell | ||
+ | | The [[COLORSET]] color defined for Abilities | ||
+ | |- | ||
+ | | ^E | ||
+ | | Emote | ||
+ | | The [[COLORSET]] color defined for Emotes | ||
+ | |- | ||
+ | | ^T | ||
+ | | Talk | ||
+ | | The [[COLORSET]] color defined for Tells | ||
+ | |- | ||
+ | | ^Q | ||
+ | | Channel Background | ||
+ | | The [[COLORSET]] color defined for default channel background | ||
+ | |- | ||
+ | | ^q | ||
+ | | Channel Foreground | ||
+ | | The [[COLORSET]] color defined for default channel foreground | ||
+ | |- | ||
+ | | ^x | ||
+ | | Important message 1 | ||
+ | | | ||
+ | |- | ||
+ | | ^X | ||
+ | | Important message 2 | ||
+ | | | ||
+ | |- | ||
+ | | ^Z | ||
+ | | Important message 3 | ||
+ | | | ||
+ | |- | ||
+ | | ^O | ||
+ | | Room Title | ||
+ | | The [[COLORSET]] color defined for Room Titles | ||
+ | |- | ||
+ | | ^L | ||
+ | | Room Description | ||
+ | | The [[COLORSET]] color defined for Room Descriptions | ||
+ | |- | ||
+ | | ^D | ||
+ | | Direction | ||
+ | | The [[COLORSET]] color defined for Doorless exits | ||
+ | |- | ||
+ | | ^d | ||
+ | | Door | ||
+ | | The [[COLORSET]] color defined for Door exits | ||
+ | |- | ||
+ | | ^I | ||
+ | | Item | ||
+ | | The [[COLORSET]] color defined for Items | ||
+ | |- | ||
+ | | ^M | ||
+ | | MOB | ||
+ | | The [[COLORSET]] color defined for Mobs | ||
+ | |- | ||
+ | | ^U | ||
+ | | Unexplored Direction | ||
+ | | | ||
+ | |- | ||
+ | | ^u | ||
+ | | Unexplored Door | ||
+ | | | ||
+ | |- | ||
+ | | ^#rgb | ||
+ | | 256 foreground (r=red, g=green, b=blue: 0 to 5 only) | ||
+ | | | ||
+ | |- | ||
+ | | ^##xx | ||
+ | | 256 foreground (xx = hex number from 00 - ff) | ||
+ | | | ||
+ | |- | ||
+ | | ^<nowiki>|</nowiki>rgb | ||
+ | | 256 color background (r=red, g=green, b=blue: 0 to 5 only) | ||
+ | | | ||
+ | |- | ||
+ | | ^<nowiki>||</nowiki>xx | ||
+ | | 256 color background (xx = hex number from 00 - ff) | ||
+ | | | ||
+ | |} | ||
+ | |||
+ | * Note: when using background colors, the foreground must always come first. | ||
+ | |||
+ | =Notes= | ||
+ | . |
Latest revision as of 21:51, 23 March 2021
CoffeeMUD |
---|
Administrator Builder Player |
=CoffeeMUD Player Information= | |||
---|---|---|---|
Basics | Info Commands Socials Combat Groups | Character | Stats Races Classes Abilities Expertises Achievements |
World | Deities Areas Property Quests Clans Triumphs | Items | Items Crafting Ships |
USING COLORS
CoffeeMUD supports the base 16 ANSI and the ANSI 256 colors. Color display can be disabled, or set to base ANSI or ANSI256 colors with the ANSI and NOANSI commands. To use an ANSI color in the description of an item (or while using the Writing skill), precede the text string with the color code (and no space). It is always best to end each colored string with the ending code of ^? to prevent color bleed into subsequent text. For ANSI 256 colors, the color code is started with ^# and then a 3 digit base 6 code for Red-Green-Blue completes the code. Since your client may interpret colors a little differently, below is the baseline sample of colors (and the colors you will see in Siplet).
ANSI COLORS
Foreground Code | Background Code | Name | Fancy Name | Sample | HEX Code |
---|---|---|---|---|---|
No Code | No Code | black | black | #000000 | |
^R | No Code | maroon | maroon | #800000 | |
^G | No Code | dark green | forest green | #008000 | |
^Y | No Code | brown | olive-green | #808000 | |
^B | No Code | dark blue | navy-blue | #000080 | |
^P | No Code | purple | purple | #800080 | |
^C | No Code | cyan | teal | #008080 | |
^W | ^~W | silvery | silver-colored | #c0c0c0 | |
^k | No Code | grey | grey | #808080 | |
^r | ^~r | red | red | #ff0000 | |
^g | ^~g | green | lime green | #00ff00 | |
^y | ^~y | yellow | yellow | #ffff00 | |
^b | ^~b | blue | blue | #0000ff | |
^p | ^~p | fuchsia | fuchsia | #ff00ff | |
^c | ^~c | aqua | aqua | #00ffff | |
^w | ^~w or ^~k | white | white | #ffffff |
ANSI 256 COLORS
These color codes can be used regardless of the author's ANSI configuration. Users who have ANSI disabled, will not see any colors. Users with ANSI 16 will see the color from the ANSI color table above, instead. Users with ANSI 256 enabled will see the listed color, with some possible variation due to the way the client interprets the color.
To use a background ANSI256 color, use a "|" instead of the "#" in the code.
- Example
- Cerulean is code ^#023 for text(foreground), and ^|023 for highlight(background).
Code | Name | Fancy Name | ANSI256 Display | HEX Code | ANSI16 | Alt |
---|---|---|---|---|---|---|
^#000 | black | vader-black | #000000 | black | ||
^#001 | deep blue | midnight-blue | #00005f | dark blue | ||
^#002 | very dark blue | cobalt-blue | #000087 | dark blue | ||
^#003 | strong dark blue | hooloovoo-blue | #0000af | dark blue | ||
^#004 | vivid blue | ravenclaw-blue | #0000d7 | dark blue | ||
^#005 | luminous vivid blue | valenthian-blue | #0000ff | blue | ||
^#010 | deep green | emerald-green | #005f00 | dark green | ||
^#011 | deep cyan | hernadonian-teal | #005f5f | cyan | ||
^#012 | strong cerulean | steel-blue | #005f87 | dark blue | ||
^#013 | strong azure | tardis-blue | #005faf | dark blue | ||
^#014 | vivid azure | dodger-blue | #005fd7 | dark blue | ||
^#015 | luminous vivid cobalt blue | cobalt-blue | #005fff | blue | ||
^#020 | emerald green | slytherin-green | #008700 | dark green | ||
^#021 | strong turquoise-colored | eucalyptus-colored | #00875f | cyan | ||
^#022 | strong artic blue | cadet-blue | #008787 | cyan | ||
^#023 | cerulean | cerulean | #0087af | cyan | ||
^#024 | vivid cornflower blue | lochmara-blue | #0087d7 | dark blue | ||
^#025 | luminous vivid azure | azure | #0087ff | blue | ||
^#030 | strong green | kelly-green | #00af00 | dark green | ||
^#031 | strong spring green | jade-colored | #00af5f | dark green | ||
^#032 | turquoise-colored | thalosian-green | #00af87 | cyan | ||
^#033 | strong cyan | celadon | #00afaf | cyan | ||
^#034 | vivid artic blue | artic-blue | #00afd7 | cyan | ||
^#035 | lumionus vivid cornflower blue | azure-radiance | #00afff | blue | ||
^#040 | vivid green | shamrock-green | #00d700 | dark green | ||
^#041 | vivid spring green | spring-green | #00d75f | dark green | ||
^#042 | vivid aquamarine-colored | caribbean-green | #00d787 | dark green | ||
^#043 | vivid opal | opal-colored | #00d7af | cyan | ||
^#044 | vivid cyan | downy-blue | #00d7d7 | cyan | ||
^#045 | luminious vivid artic blue | turquoisey-colored | #00d7ff | aqua | ||
^#050 | luminous vivid green | harlequin-green | #00ff00 | green | ||
^#051 | luminous vivid sea green | malachite-green | #00ff5f | green | ||
^#052 | luminous vivid spring green | Medium-spring-green | #00ff87 | green | ||
^#053 | luminous vivid aquamarine-colored | scandal-green | #00ffaf | green | ||
^#054 | luminoius vivid opal | java-colored | #00ffd7 | aqua | ||
^#055 | luminous vivid cyan | cyan | #00ffff | aqua | ||
^#100 | deep reddish brown | scarlet | #5f0000 | maroon | ||
^#101 | deep magenta | eggplant-colored | #5f005f | purple | ||
^#102 | strong mulberry | pigment-indigo | #5f0087 | purple | ||
^#103 | strong violet | indigo | #5f00af | purple | ||
^#104 | vivid violet | purple-iris-colored | #5f00d7 | purple | ||
^#105 | luminous vivid blue Violet | blueviolet | #5f00ff | dark blue | ||
^#110 | deep olive-colored | citron-green | #5f5f00 | brown | ||
^#111 | dark gray | taupe | #5f5f5f | grey | ||
^#112 | grayish blue | comet-grey | #5f5f87 | dark blue | ||
^#113 | light grayish blue | scampi-blue | #5f5faf | dark blue | ||
^#114 | light blue | delphinium-blue | #5f5fd7 | dark blue | ||
^#115 | light brilliant blue | periwinkle | #5f5fff | dark blue | ||
^#120 | strong lime colored | olive-drab | #5f8700 | dark green | ||
^#121 | grayish green | sage-green | #5f875f | dark green | ||
^#122 | grayish cyan | juniper-grey | #5f8787 | cyan | ||
^#123 | grayish azure | steel-blue | #5f87af | blue | ||
^#124 | light cobalt blue | sapphire-blue | #5f87d7 | blue | ||
^#125 | light brilliant sapphire blue | cornflower-blue | #5f87ff | blue | ||
^#130 | strong chartreuse green | limeade-green | #5faf00 | dark green | ||
^#131 | light grayish green | thussevy-green | #5faf5f | dark green | ||
^#132 | grayish spring green | silvertree-colored | #5faf87 | blue | ||
^#133 | light grayish cyan | tradewind-blue | #5fafaf | cyan | ||
^#134 | light cornflower blue | shakespeare-blue | #5fafd7 | blue | ||
^#135 | light brilliant azure | ice-blue | #5fafff | blue | ||
^#140 | vivid chartreuse green | bahia-green | #5fd700 | dark green | ||
^#141 | light green | mantis-green | #5fd75f | dark green | ||
^#142 | light sea green | sea-green | #5fd787 | dark green | ||
^#143 | light aquamarine-colored | aquamarine-colored | #5fd7af | aqua | ||
^#144 | lightish cyan | viking-blue | #5fd7d7 | aqua | ||
^#145 | light brilliant cerulean | tiffany-blue | #5fd7ff | aqua | ||
^#150 | luminous vivid pistachio | pistachio-colored | #5fff00 | green | ||
^#151 | light brilliant green | screaming-green | #5fff5f | green | ||
^#152 | light brilliant malachite green | tidal-green | #5fff87 | green | ||
^#153 | light brilliant spring green | moss-green | #5fffaf | green | ||
^#154 | light brilliant turquoise-colored | powder-blue | #5fffd7 | aqua | ||
^#155 | light brilliant cyan | spray-cyan | #5fffff | aqua | ||
^#200 | strong red | burgundy | #870000 | maroon | ||
^#201 | strong fuchsia | boysenberry-colored | #87005f | purple | ||
^#202 | strong purplish magenta | camelot-purple | #870087 | purple | ||
^#203 | strong light mulberry | mulberry-colored | #8700af | purple | ||
^#204 | vivid purple | violet | #8700d7 | purple | ||
^#205 | luminous vivid violet | electric-violet | #8700ff | purple | ||
^#210 | strong amber | browncoat-colored | #875f00 | brown | ||
^#211 | grayish red | copper-rose-colored | #875f5f | brown | ||
^#212 | grayish magenta | strikemaster-plum | #875f87 | purple | ||
^#213 | grayish violet | mauve | #875faf | purple | ||
^#214 | light blue violet | tananite | #875fd7 | purple | ||
^#215 | light brilliant indigo | amethyst-colored | #875fff | dark blue | ||
^#220 | strong olive-colored | olive-colored | #878700 | brown | ||
^#221 | grayish olive-colored | clay-creek-colored | #87875f | brown | ||
^#222 | medium gray | dim-grey | #878787 | silvery | ||
^#223 | blue grey | wild-blue-yonder | #8787af | dark blue | ||
^#224 | light pale grey blue | chetwode-blue | #8787d7 | purple | ||
^#225 | very light blue | malibu-blue | #8787ff | blue | ||
^#230 | strong lime green | lime-green | #87af00 | brown | ||
^#231 | grayish chartreuse green | asparagus-colored | #87af5f | brown | ||
^#232 | greenish gray | bayleaf-green | #87af87 | dark green | ||
^#233 | cyanish gray | gulfstream-grey | #87afaf | cyan | ||
^#234 | pale light grayish azure | slate-blue | #87afd7 | blue | ||
^#235 | very light cobalt blue | sky-blue | #87afff | blue | ||
^#240 | vivid spring bud | atlantis-green | #87d700 | dark green | ||
^#241 | light pistachio | fern-green | #87d75f | green | ||
^#242 | pale light grayish green | feijoa-green | #87d787 | green | ||
^#243 | pale light grayish spring green | vista-blue | #87d7af | green | ||
^#244 | pale light grayish cyan | bermuda-blue | #87d7d7 | aqua | ||
^#245 | very light cornflower blue | baby-blue | #87d7ff | aqua | ||
^#250 | luminous vivid chartreuse green | chartreuse | #87ff00 | green | ||
^#251 | light brilliant harlequin | prim-green | #87ff5f | green | ||
^#252 | very light green | mint-green | #87ff87 | green | ||
^#253 | very light sea green | sprout-green | #87ffaf | green | ||
^#254 | very light aquamarine-colored | caper-cyan | #87ffd7 | aqua | ||
^#255 | very light cyan | seaglass-cyan | #87ffff | aqua | ||
^#300 | strong scarlet | gryffindor-scarlet | #af0000 | maroon | ||
^#301 | strong rose | red-flirt-colored | #af005f | maroon | ||
^#302 | strong light fuchsia | violet-flirt | #af0087 | purple | ||
^#303 | strong magenta | red-violet | #af00af | purple | ||
^#304 | vivid heliotrope | cabaret-colored | #af00d7 | purple | ||
^#305 | luminous vivid purple | lilac-colored | #af00ff | purple | ||
^#310 | strong orange | beige | #af5f00 | maroon | ||
^#311 | light grayish red | merlot-colored | #af5f5f | maroon | ||
^#312 | grayish rose | tapestry-colored | #af5f87 | red | ||
^#313 | light grayish magenta | fuchia-pink | #af5faf | purple | ||
^#314 | light purple | medium-purple | #af5fd7 | purple | ||
^#315 | light brilliant violet | heliotrope | #af5fff | purple | ||
^#320 | strong light amber | pirat-golden | #af8700 | brown | ||
^#321 | grayish brown | muesli-colored | #af875f | brown | ||
^#322 | reddish gray | pharlap-colored | #af8787 | maroon | ||
^#323 | magentaish gray | purple-bouquet | #af87af | purple | ||
^#324 | pale light grayish violet | lavender-colored | #af87d7 | purple | ||
^#325 | very light blue violet | kimian-purple | #af87ff | purple | ||
^#330 | strong light olive-colored | golden | #afaf00 | brown | ||
^#331 | light grayish olive-colored | dark-khaki | #afaf5f | brown | ||
^#332 | yellowish gray | hillary-brown | #afaf87 | brown | ||
^#333 | deep silver (medium gray) | base-grey | #afafaf | silvery | ||
^#334 | light bluish gray | wistful-blue | #afafd7 | blue | ||
^#335 | pale blue | melrose-colored | #afafff | blue | ||
^#340 | vivid apple green | green-apple-colored | #afd700 | brown | ||
^#341 | light spring bud | conifer-green | #afd75f | brown | ||
^#342 | pale light grayish chartreuse green | flax-green | #afd787 | brown | ||
^#343 | light greenish gray | pixie-green | #afd7af | cyan | ||
^#344 | light cyanish gray | junglemist-blue | #afd7d7 | aqua | ||
^#345 | pale azure | clearskies-blue | #afd7ff | aqua | ||
^#350 | luminous vivid spring bud | pear-green | #afff00 | green | ||
^#351 | light brilliant chartreuse green | green-yellow | #afff5f | green | ||
^#352 | very light pistachio | mindaro-green | #afff87 | green | ||
^#353 | very light sap green | sulu-green | #afffaf | green | ||
^#354 | pale spring green | aero-blue | #afffd7 | aqua | ||
^#355 | pale cyan | robbinegg-blue | #afffff | aqua | ||
^#400 | vivid red | santa-red | #d70000 | maroon | ||
^#401 | vivid rose | crimson | #d7005f | maroon | ||
^#402 | vivid cerise | carnation-colored | #d70087 | maroon | ||
^#403 | vivid orchid | cerise | #d700af | purple | ||
^#404 | vivid magenta | purple-pizzazz | #d700d7 | purple | ||
^#405 | luminous vivid heliotrope | pretty-in-pink | #d700ff | fuchsia | ||
^#410 | vivid orange | tenn-colored | #d75f00 | maroon | ||
^#411 | pink | Indian-red | #d75f5f | red | ||
^#412 | light raspberry | cranberry-colored | #d75f87 | red | ||
^#413 | light cerise | hot-pink | #d75faf | red | ||
^#414 | brilliant orchid | orchid-colored | #d75fd7 | fuchsia | ||
^#415 | light brilliant mulberry | wilderberry-colored | #d75fff | purple | ||
^#420 | vivid gamboge | mango-colored | #d78700 | maroon | ||
^#421 | light tangelo | tangelo-colored | #d7875f | red | ||
^#422 | pale grayish pink | salmon-colored | #d78787 | red | ||
^#423 | pale light grayish rose | dusty-rose-colored | #d787af | red | ||
^#424 | pale light grayish magenta | plum-colored | #d787d7 | fuchsia | ||
^#425 | very light purple | perfume-colored | #d787ff | fuchsia | ||
^#430 | vivid golden | filigree-golden | #d7af00 | brown | ||
^#431 | light gamboge | tacha | #d7af5f | brown | ||
^#432 | pale light grayish brown | tan | #d7af87 | brown | ||
^#433 | pinkish gray | clamshell-colored | #d7afaf | red | ||
^#434 | light magentaish gray | thistle-colored | #d7afd7 | fuchsia | ||
^#435 | pale violet | melanie-colored | #d7afff | fuchsia | ||
^#440 | vivid yellow | corn-yellow | #d7d700 | yellow | ||
^#441 | light yellow | khaki | #d7d75f | brown | ||
^#442 | pale light grayish olive-colored | deco-yellow | #d7d787 | yellow | ||
^#443 | light yellowish gray | mist-yellow | #d7d7af | yellow | ||
^#444 | bright silver | gainsboro-grey | #d7d7d7 | silvery | ||
^#445 | very pale blue | atat-silver | #d7d7ff | blue | ||
^#450 | luminious vivid yellow | chartreuse-yellow | #d7ff00 | yellow | ||
^#451 | light vivid yellow | canary-yellow | #d7ff5f | yellow | ||
^#452 | very light spring bud | honeysuckle-colored | #d7ff87 | yellow | ||
^#453 | pale chartreuse green | reef-yellow | #d7ffaf | green | ||
^#454 | very pale green | snowy-mint-colored | #d7ffd7 | green | ||
^#455 | light cyan | oysterbay-blue | #d7ffff | aqua | ||
^#500 | luminous vivid red | cherry-red | #ff0000 | red | ||
^#501 | luminous vivid raspberry | raspberry-red | #ff005f | red | ||
^#502 | luminous vivid rose | razzledazzle-rose-colored | #ff0087 | fuchsia | ||
^#503 | luminous vivid cerise | rose-colored | #ff00af | fuchsia | ||
^#504 | luminous vivid orchid | shocking-pink | #ff00d7 | fuchsia | ||
^#505 | luminous vivid magenta | magenta | #ff00ff | fuchsia | ||
^#510 | lumnious vivid tangelo | burnt-orange | #ff5f00 | red | ||
^#511 | light brilliant red | bittersweet-red | #ff5f5f | red | ||
^#512 | light brilliant crimson | wild-watermelon-colored | #ff5f87 | red | ||
^#513 | light brilliant rose | wewak-pink | #ff5faf | fuchsia | ||
^#514 | light brilliant fuchsia | thalosian-pink | #ff5fd7 | fuchsia | ||
^#515 | light brilliant magenta | pink-flamingo-colored | #ff5fff | fuchsia | ||
^#520 | luminous vivid orange | orange-colored | #ff8700 | red | ||
^#521 | light brilliant vermilion | hydrascale-red | #ff875f | red | ||
^#522 | light pink | coral-colored | #ff8787 | red | ||
^#523 | very light raspberry | pink-salmon | #ff87af | red | ||
^#524 | very light cerise | lavender-rose-colored | #ff87d7 | fuchsia | ||
^#525 | very light magenta | blush-pink | #ff87ff | fuchsia | ||
^#530 | lumionus vivid gamboge | butterscotch-colored | #ffaf00 | red | ||
^#531 | light brilliant orange | orthindar-rose-colored | #ffaf5f | brown | ||
^#532 | very light tangelo | pink-ice | #ffaf87 | red | ||
^#533 | pale pink | flesh-colored | #ffafaf | red | ||
^#534 | pale rose | pink | #ffafd7 | red | ||
^#535 | pale magenta | cherub-pink | #ffafff | fuchsia | ||
^#540 | luminous vivid golden | golden-hufflepuff | #ffd700 | yellow | ||
^#541 | light brilliant amber | goldernrod | #ffd75f | yellow | ||
^#542 | very light gamboge | grandis-yellow | #ffd787 | yellow | ||
^#543 | pale orange | champagne-colored | #ffd7af | brown | ||
^#544 | very pale pink | mistyrose-colored | #ffd7d7 | fuchsia | ||
^#545 | very pale magenta | lace-pink | #ffd7ff | fuchsia | ||
^#550 | luminous vivid yellow | zacarian-yellow | #ffff00 | yellow | ||
^#551 | light brilliant yellow | lemon-colored | #ffff5f | yellow | ||
^#552 | very light yellow | yellow-rose-colored | #ffff87 | yellow | ||
^#553 | pale yellow | vanilla-cream-colored | #ffffaf | yellow | ||
^#554 | very pale yellow | cornsilk-white | #ffffd7 | yellow | ||
^#555 | pale white | snow-white | #ffffff | white |
Special Color Codes
Below are a list of the standard color codes for CoffeeMud. You may display this list with the AHELP COLORS command.
Code | Definition | Notes |
---|---|---|
^N | Normal | Resets to mud-default (white) |
^! | Bold | |
^H | Highlight | The COLORSET color defined for Highlight |
^_ | Underline | |
^/ | Italics | |
^. | Reset (turns off reverse) | |
^^ | Generates an untranslated "^" character | |
^? | Restores previous color | |
^f | You-Fight | The COLORSET color defined for Your Fight Text |
^e | Fight-You | The COLORSET color defined for Fighting You Text |
^F | Fight | The COLORSET color defined for Other Fight Text |
^S | Spell | The COLORSET color defined for Abilities |
^E | Emote | The COLORSET color defined for Emotes |
^T | Talk | The COLORSET color defined for Tells |
^Q | Channel Background | The COLORSET color defined for default channel background |
^q | Channel Foreground | The COLORSET color defined for default channel foreground |
^x | Important message 1 | |
^X | Important message 2 | |
^Z | Important message 3 | |
^O | Room Title | The COLORSET color defined for Room Titles |
^L | Room Description | The COLORSET color defined for Room Descriptions |
^D | Direction | The COLORSET color defined for Doorless exits |
^d | Door | The COLORSET color defined for Door exits |
^I | Item | The COLORSET color defined for Items |
^M | MOB | The COLORSET color defined for Mobs |
^U | Unexplored Direction | |
^u | Unexplored Door | |
^#rgb | 256 foreground (r=red, g=green, b=blue: 0 to 5 only) | |
^##xx | 256 foreground (xx = hex number from 00 - ff) | |
^|rgb | 256 color background (r=red, g=green, b=blue: 0 to 5 only) | |
^||xx | 256 color background (xx = hex number from 00 - ff) |
- Note: when using background colors, the foreground must always come first.
Notes
.
Pages in category "Colors"
The following 8 pages are in this category, out of 8 total.