Compare commits

...

9 Commits

Author SHA1 Message Date
Daniel Napora f83575da2d icon, help 2022-06-10 10:16:49 +02:00
Daniel Napora 0346264199 update 2022-05-24 02:06:37 +02:00
Daniel Napora 02aab980f2 upd 2022-05-01 17:32:05 +02:00
Daniel Napora b9ca38e78e update 2022-04-28 14:44:58 +02:00
Daniel Napora 9894b7c3c7 do not set expose to html 2022-04-25 22:16:17 +02:00
Daniel Napora a2b4bc9901 rand wallpaper 2022-04-25 02:58:43 +02:00
Daniel Napora a0fa13432d big update :) 2022-04-24 18:43:34 +02:00
Daniel Napora 5cb3025154 fix 2022-04-22 19:48:31 +02:00
Daniel Napora bd1fb9ed40 wallpaper colors and other improvements 2022-04-22 18:46:38 +02:00
16 changed files with 918 additions and 347 deletions

View File

@ -1,12 +1,9 @@
#!/usr/bin/env bash
# Copyright (C) Daniel Napora 2021-22 <napcok@gmail.com>
# Dependencies: jgmenu, xdotool, xcolor, gcolor3, xdg-utils, xclip, notify-send
# TODO Imagick colors - separate menu big around 700 named colors
# Dependencies: jgmenu, xdotool, xcolor, gcolor3, gpick, pastel, xdg-utils, xclip, notify-send
# TODO export to .gpl (GIMP,Inkscape)
# TODO Current Wallpaper palette
# TODO PL translation
VERSION="0.2.6"
VERSION="0.9.8"
TEMP_DIR=/tmp/colormenu
ME=${0##*/}
@ -26,15 +23,21 @@ action=copy
#What thing to expose on top of main menu: recently picked colors, last used colors or last used palette
expose=picked
#Show HTML colors? yes|no
htmlcolors=no
htmlcolors=yes
#Color picker (gpick or xcolor)
picker=gpick
#Show built in palettes? (slow)
builtin_palettes=no
builtin_palettes=yes
# Random wallpaper dir
walldir=/usr/share/backgrounds
#Position on screen: topleft, top, topright, left, center, right, bottomleft, bottom, bottomright
position=left
EOF
fi
source <(grep = $CNF_FILE)
RANDWALLDIR=${walldir:-/usr/share/backgrounds}
if [ ! -f $RECENT ]; then
cat <<EOF > ${RECENT}
#FFFFFF White
@ -57,11 +60,14 @@ hex2rgba() {
echo "rgba($r, $g, $b, 1.0)"
}
pickcolor() {
#color=$(colorpicker --short --one-shot --preview)
#color=$(xcolor --preview-size "${preview-size:-255}" --scale "${scale:-8}")
size=${xcolor_preview_size:-255}
scale=${xcolor_scale:-8}
picker=${picker:-gpick}
if [ "$picker" == "gpick" ]; then
command="gpick -pso 2>/dev/null"
else
command="xcolor --preview-size ${size} --scale ${scale}"
fi
color="$(${command})"
if [ -n "${color}" ]; then
echo "$color " > "$RECENT".tmp
@ -104,7 +110,7 @@ getcolorcode() {
mkdir -p $TEMP_DIR
FNAME="$TEMP_DIR/${1:1:6}.png"
convert -size 100x100 xc:"$1" "$FNAME"
notify-send ColorMenu "$clr" --icon="$FNAME" --expire-time=120000
notify-send ColorMenu "$clr copied to clipboard" --icon="$FNAME" --expire-time=120000
fi
echo "$1" > "$USED".tmp
# add on top and deduplicate
@ -117,6 +123,7 @@ recent2palette () {
DATE=$(date +"%Y%m%d-%H%M%S")
mkdir -p "$CNF_DIR/palettes/my"
grep ^# $RECENT |tac > "$CNF_DIR/palettes/my/My_palette_$DATE.clr"
grep ^# $RECENT |pastel sort-by brightness|pastel format hex > "$CNF_DIR/palettes/my/My_palette_$DATE.clr"
}
newpalette() {
DATE=$(date +"%Y%m%d-%H%M%S")
@ -125,55 +132,51 @@ newpalette() {
}
palettes() {
[ -n "$1" ] && pdir="$CNF_DIR/palettes/my/" || pdir="$DATA_DIR/palettes/"
for file in "$pdir"*.clr;do
if [[ -n "$1" ]]; then
out2+=("^tag(mypalettes)")
out2+=("^sep($MYPALETTES)")
else
out2+=("^tag(builtpalettes)")
out2+=("^sep($BUILTIN_PAL)")
fi
for file in "$pdir"*.clr ;do
filename=${file##*/}
palette=${filename%.*}
pal=${palette//_/ }
tagname=${palette// /_}
out1+=("${pal^},^checkout($tagname)")
out2+=("^tag($tagname)")
out2+=("^sep(${pal^})")
out2+=("${pal^},^checkout($tagname)")
out3+=("^tag($tagname)")
out3+=("^sep(${pal^})")
out3+=("$EXPOSE_IN_ROOTMENU,$ME setvar expose=$filename;$ME")
out3+=("^sep()")
while read -r color name;
do
#name=$(printf "%22s %s\n" "$name")
#fg=$(fgcolor $color)
#out2+=("<tt><span bgcolor='$color' fgcolor='$fg'><sub> </sub>$color<sup>$name </sup></span></tt>,$ME getcolorcode '$color' '$file',,,#${palette}")
out2+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt>,$ME getcolorcode '$color' '$file';$ME setvar expose=palette,,,#${palette}")
out3+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt>,$ME getcolorcode '$color' '$file',,,#${palette}")
done < "$file"
if [[ -n "$1" ]] ; then
out2+=("^sep()")
out2+=("<b>Add color...</b> from screen,$ME pickcolor '$file'")
out3+=("^sep()")
out3+=("<b>Add color...</b> from screen,$ME pickcolor '$file'")
if hash gcolor3 2>/dev/null; then
out2+=("^sep()")
out2+=("<b>Add</b> color from selector...,$ME addcolor '$file'")
out3+=("^sep()")
out3+=("<b>Add</b> color from selector...,$ME addcolor '$file'")
fi
out2+=("^sep()")
out2+=("<b>Edit</b> palette file,xdg-open '$file'")
out2+=("^sep(Danger zone...)")
out2+=("<b>Delete</b> palette: ${palette^},^checkout($tagname-del)")
out3+=("^tag($tagname-del)")
out3+=("^sep(Are you sure?)")
out3+=("Yes,rm '$file';$ME")
out3+=("^sep()")
out3+=("<b>Edit</b> palette file,xdg-open '$file'")
out3+=("^sep(Danger zone...)")
out3+=("<b>Delete</b> palette: ${palette^},^checkout($tagname-del)")
out4+=("^tag($tagname-del)")
out4+=("^sep(Are you sure?)")
out4+=("Yes,rm '$file';$ME")
fi
done
#if [[ $# = 0 ]] ; then
if [[ -n "$1" ]] ; then
out1+=("^sep()")
out1+=("<b>Add new</b> palette...,$ME newpalette;$ME")
out1+=("Open palette directory,xdg-open $CNF_DIR/palettes/my/")
out2+=("^sep()")
out2+=("<b>Add new</b> palette...,$ME newpalette;$ME")
out2+=("Open palette directory,xdg-open $CNF_DIR/palettes/my/")
fi
}
if [ $htmlcolors = "yes" ] && [ $expose != "html" ]; then
htmlroot="^sep()
<b>HTML</b> colors,^checkout(html)
"
htmlsub="^tag(html)
. ${DATA_DIR}/htmlsub.csv"
htmlclrs=". ${DATA_DIR}/htmlclrs.csv"
else
htmlroot="" htmlsub="" htmlclrs=""
fi
position() {
case "$position" in
ipc) POSITION_MODE="ipc";;
@ -186,86 +189,73 @@ position() {
bottomleft) POSITION_MODE="fixed" MENU_VALIGN="bottom" MENU_HALIGN="left";;
bottom) POSITION_MODE="fixed" MENU_VALIGN="bottom" MENU_HALIGN="center";;
bottomright) POSITION_MODE="fixed" MENU_VALIGN="bottom" MENU_HALIGN="right";;
center|*) POSITION_MODE="center";;
center|*) POSITION_MODE="center" MENU_VALIGN="center" MENU_HALIGN="center";;
esac
}
mkconfigfile() {
if [[ -f /usr/share/mbxtools/configure.inc ]];then
. /usr/share/mbxtools/configure.inc
elif [[ -f /usr/share/mb-jgtools/pipemenu-standalone.cfg ]];then
. /usr/share/mb-jgtools/pipemenu-standalone.cfg
. $HOME/.config/mabox/mabox.conf
else
MENU_ITEMS=$(mktemp)
CONFIG_FILE=$(mktemp)
cat <<EOF > ${CONFIG_FILE}
position_mode = ${POSITION_MODE:-center}
menu_halign = ${MENU_HALIGN:-center}
menu_valign = ${MENU_VALIGN:-center}
csv_cmd = apps
stay_alive = 0
hide_back_items = ${HIDE_BACK_ITEMS:-0}
terminal_exec = terminator
terminal_args = -e
tabs = ${TABS:-220}
menu_border = ${jgtools_border:-0}
# MENU MARGIN
menu_margin_x = ${menu_margin_x:-0}
menu_margin_y = ${panels_topmargin:-0}
sub_spacing = ${submenu_spacing:-2}
menu_width = $JGWIDTH
menu_height_min = ${MENU_HEIGHT_MIN:-0}
menu_height_max = ${MENU_HEIGHT_MAX:-0}
menu_padding_top = ${MENU_PADDING_TOP:-70}
menu_padding_right = ${jgtools_padding:-0}
menu_padding_bottom = ${jgtools_padding:-0}
menu_padding_left = ${jgtools_padding:-0}
menu_radius = ${MENU_RADIUS:-0}
#item_height = ${jgmenu_item_height:-30}
#item_halign = ${ITEM_HALIGN:-left}
#item_padding_x = 4
#item_margin_x = ${item_margin_x:-0}
item_margin_y = ${item_margin_y:-0}
#item_radius = ${item_radius:-2}
#item_border = ${item_border:-0}
columns = ${COLUMNS:-1}
menu_gradient_pos = ${menu_gradient_pos:- none}
#color_menu_bg = ${color_menu_bg:-#222222 80}
#color_menu_bg_to = ${color_menu_bg_to:- #000000 100}
#color_menu_border = ${color_menu_border:-#2f9b85 100}
#color_norm_bg = ${color_norm_bg:-#000000 0}
#color_norm_fg = ${color_norm_fg:-#CCCCCC 100}
#color_sel_bg = ${color_sel_bg:-#169f6f 60}
#color_sel_fg = ${color_sel_fg:-#f8f8f8 100}
#color_sel_border = ${color_sel_border:-#504e65 100}
#color_sep_fg = ${color_sep_fg:-#4D4D4D 100}
#color_sep_bg = ${color_sep_bg:-#262626 100}
#color_title_fg = ${color_title_fg:-#4D4D4D 100}
#color_title_border = ${color_title_border:-#169f6f 100}
#color_title_bg = ${color_title_bg:-#262626 100}
#color_scroll_ind = ${COLOR_SCROLL_IND:-#504e65 100}
sep_markup = weight="bold"
sep_height = ${sep_height:-5}
#font = ${jgmenu_font:-Noto Sans Medium 9}
icon_size = ${jgmenu_icon_size:-16}
icon_theme = ${jgmenu_icon_theme:-Numix-Square}
EOF
fi
}
main () {
# Mabox Linux
if [[ -f /usr/share/mb-jgtools/pipemenu-standalone.cfg ]];then
. /usr/share/mb-jgtools/pipemenu-standalone.cfg
. $HOME/.config/mabox/mabox.conf
fi
case $LANG in
pl*)
COLORMENU="Menu kolorów"
COPY_COLOR_CODE="Kopiuj kod koloru"
COLLECT_COLORS="Dodaj kolory"
PICK_FROM_SCREEN="<b>Pobierz</b> kolor z ekranu..."
ADD_FROM_SELECTOR="<b>Dodaj</b> kolor..."
LASTUSED_PAL="Ostatnio używana paleta"
RECENTLYUSED="Ostatnio użyte kolory"
RECENTLYPICKED="Ostatnio dodane kolory"
CLEAR_ALL="Usuń wszystkie"
CLEAR_ALL2="<b>Usuń</b> wszystkie"
CLEAR_RECUSED="<b>Usuń</b> ostatnio użyte kolory"
NEWPAL_FROMREC="<b>Nowa paleta</b> z ostatnio dodanych"
CLEAR_RECPICKED="<b>Usuń</b> ostatnio dodane"
REMOVEONE="Usuń tylko jeden kolor..."
WALLCOLORS="Kolory z tapety"
RANDWALL="Ustaw <b>losową tapetę</b>"
IMAGICKCOLORS="Kolory <b>Image Magick</b>"
HTMLCOLORS="Kolory <b>HTML</b>"
PALETTE="Paleta:"
COLORPALETTES="Palety kolorów"
MYPALETTES="Moje palety"
BUILTIN_PAL="Wbudowane palety"
EXPOSE_IN_ROOTMENU="Pokaż w menu głównym"
SETTINGS="Ustawienia"
PREFERENCES="Konfiguruj..."
HELP="Pomoc"
;;
*)
COLORMENU="ColorMenu"
COPY_COLOR_CODE="Copy Color Code"
COLLECT_COLORS="Collect Colors"
PICK_FROM_SCREEN="<b>Pick</b> color from screen..."
ADD_FROM_SELECTOR="<b>Add</b> color from selector..."
LASTUSED_PAL="Last used palette"
RECENTLYUSED="Recently used colors"
RECENTLYPICKED="Recently picked colors"
CLEAR_ALL="Clear All"
CLEAR_ALL2="<b>Clear</b> all"
CLEAR_RECUSED="<b>Clear</b> recently used colors"
NEWPAL_FROMREC="<b>New palette</b> from recently picked"
CLEAR_RECPICKED="<b>Clear</b> recently picked"
REMOVEONE="Just remove one color..."
WALLCOLORS="Wallpaper colors"
RANDWALL="Set <b>random wallpaper</b>"
IMAGICKCOLORS="<b>Image Magick</b> Colors"
HTMLCOLORS="<b>HTML</b> colors"
PALETTE="Palette:"
COLORPALETTES="Color palettes"
MYPALETTES="My palettes"
BUILTIN_PAL="Built-in palettes"
EXPOSE_IN_ROOTMENU="Expose in rootmenu"
SETTINGS="Settings"
PREFERENCES="Preferences"
HELP="About and Help"
;;
esac
[ "$1" = "ipc" ] && position="ipc"
MENU_PADDING_TOP=${jgtools_padding:-0}
@ -277,91 +267,156 @@ menu_margin_x=${submenu_spacing:-0}
#jgmenu_font="Noto Sans Medium 10"
position
mkconfigfile
trap "rm -f ${CONFIG_FILE} ${MENU_ITEMS}" EXIT
out+=("^sep(ColorMenu <sup><span font_weight='light'> [$action $format]</span></sup>)")
#out+=("^sep(<span bgcolor='#800000'> </span><span fgcolor='#800000' bgcolor='#FABD2F'> mbx </span><span fgcolor='#FABD2F' bgcolor='#800000'> colors </span><span bgcolor='#FABD2F'> </span> <sup><span font_weight='light'>[$action $format]</span></sup>)")
out+=("<b>Pick</b> color from screen...,$ME pickcolor")
out+=("^sep($COLORMENU)")
out+=("^sep()")
out+=("^sep($COLLECT_COLORS...)")
out+=("$PICK_FROM_SCREEN,$ME pickcolor")
if hash gcolor3 2>/dev/null; then
out+=("^sep()")
out+=("<b>Add</b> color from selector...,$ME addcolor")
out+=("$ADD_FROM_SELECTOR,$ME addcolor")
fi
out+=("^sep($COPY_COLOR_CODE...<sup> [$action $format]</sup>)")
# exposed thing
case "$expose" in
html)
htmlroot=". ${CNF_DIR}/htmlsub.csv"
htmlsub=". ${CNF_DIR}/htmlclrs.csv"
htmlclrs=""
;;
palette)
pal=$(cat "$CNF_DIR/.palette")
filename=${pal##*/}
palette=${filename%.*}
out+=("^sep(<i><span font_weight='light'>Last used palette</span> ${palette^}</i>)")
out+=("^sep(<i><span font_weight='light'>$LASTUSED_PAL</span> ${palette^}</i>)")
while read -r color name;do
#name=$(printf "%22s %s\n" "$name")
#fg=$(fgcolor $color)
#out+=("<tt><span bgcolor='$color' fgcolor='$fg'><sub> </sub>$color<sup>$name</sup></span></tt>,$ME getcolorcode '$color'")
out+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt> ,$ME getcolorcode '$color'")
done < "${pal}"
;;
used)
mapfile -t < $USED
if (( ${#MAPFILE[@]} > 1 )); then
out+=("^sep(<i><small>Recently used colors:</small></i>)")
out+=("^sep(<i><small>$RECENTLYUSED</small></i>)")
while read -r color name;do
#name=$(printf "%22s %s\n" "$name")
#fg=$(fgcolor $color)
#out+=("<tt><span bgcolor='$color' fgcolor='$fg'><sub> </sub>$color<sup>$name</sup></span></tt>,$ME getcolorcode '$color'")
out+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt> ,$ME getcolorcode '$color'")
#out2+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt> ,sed -i '/${color:1:6}/d' $USED;$ME")
done < <(grep ^# $USED)
out+=("^sep()")
out+=("<b>Clear</b> recently used colors,echo > $USED;$ME")
out+=("$CLEAR_RECUSED,echo > $USED;$ME")
fi
;;
picked|*)
picked)
mapfile -t < $RECENT
if (( ${#MAPFILE[@]} > 1 )); then
out+=("^sep(<i><small>Recently picked colors:</small></i>)")
out+=("^sep(<i><small>$RECENTLYPICKED</small></i>)")
# for clear/delete
out2+=("^tag(pickeddel)")
out2+=("^sep(Clear All)")
out2+=("<b>Clear</b> all,echo > $RECENT;$ME")
out2+=("^sep(Just remove one color...)")
out2+=("^sep($CLEAR_ALL)")
out2+=("$CLEAR_ALL2,echo > $RECENT;$ME")
out2+=("^sep($REMOVEONE)")
while read -r color name;do
# name=$(printf "%22s %s\n" "$name")
# fg=$(fgcolor $color)
# out+=("<tt><span bgcolor='$color' fgcolor='$fg'><sub> </sub>$color<sup>$name</sup></span></tt>,$ME getcolorcode '$color'")
out+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt> ,$ME getcolorcode '$color'")
out2+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt> ,sed -i '/${color:1:6}/d' $RECENT;$ME")
#echo "<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt> ,sed '/${color:1:6}/d' $RECENT;$ME"
done < <(grep ^# $RECENT)
out+=("^sep()")
out+=("<b>New palette</b> from recently picked,$ME recent2palette;$ME")
#out+=("<b>Clear</b> recently picked,echo > $RECENT;$ME")
out+=("<b>Clear</b> recently picked,^checkout(pickeddel)")
out+=("$NEWPAL_FROMREC,$ME recent2palette;$ME")
out+=("$CLEAR_RECPICKED,^checkout(pickeddel)")
fi
;;
wallpaper)
WALLPALDIR="$HOME/.config/mbxcolors/palettes/wallp"
mkdir -p "$WALLPALDIR"
read WALLPATH<<< $(grep file "$HOME/.config/nitrogen/bg-saved.cfg" | cut -d'=' -f2)
WALLPAPER=${WALLPATH##*/}
if [ ! -f "$WALLPALDIR/$WALLPAPER.clr" ]; then
convert ${WALLPATH} -resize 25% -colors 16 -unique-colors txt:- |grep -v '^#'| awk '{print substr($3,1,7)}' |pastel sort-by brightness |pastel format hex > "$WALLPALDIR/$WALLPAPER.clr"
fi
#mapfile -t wallcolors < "$WALLPALDIR/$WALLPAPER.clr"
out+=("^sep(<i><small>$WALLCOLORS</small></i>)")
while read -r color name;do
out+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt> ,$ME getcolorcode '$color'")
done < "$WALLPALDIR/$WALLPAPER.clr"
out+=("^sep()")
out+=("$RANDWALL,nitrogen --random ${RANDWALLDIR} --set-scaled --save;$ME")
;;
*)
if [ -f "$DATA_DIR/palettes/$expose" ];then
palfile="$DATA_DIR/palettes/$expose"
elif [ -f "$CNF_DIR/palettes/my/$expose" ];then
palfile="$CNF_DIR/palettes/my/$expose"
fi
if [ $palfile ];then
palette=${expose%.*}
pal=${palette//_/ }
out+=("^sep(<i><small>$PALETTE ${pal^}</small></i>)")
while read -r color name;
do
out+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt>,$ME getcolorcode '$color' '$file';$ME setvar expose=palette,,,#${palette}")
done < "$palfile"
fi
;;
esac
#if [[ "$CNF_DIR"/palettes/my/*.clr ]]; then
if [ "$(find "$CNF_DIR"/palettes/my/*.clr -maxdepth 1 -type f -iname \*.clr)" ]; then
out1+=("^sep(My palletes)")
out+=("^sep($COLORPALETTES)")
if [ "$(find "$CNF_DIR"/palettes/my/*.clr -maxdepth 1 -type f -iname \*.clr 2>/dev/null)" ]; then
out+=("$MYPALETTES,^checkout(mypalettes)")
palettes my
fi
if [[ $builtin_palettes == "yes" ]];then
out1+=("^sep(Built-in palettes)")
out+=("$BUILTIN_PAL,^checkout(builtpalettes)")
palettes
fi
# WALLPAPER COLORS
if [ "$expose" != "wallpaper" ];then
out+=("$WALLCOLORS,^checkout(wallcolors)")
read WALLPAPER<<< $(grep file "$HOME/.config/nitrogen/bg-saved.cfg | cut -d'=' -f2")
WALLPALDIR="$HOME/.config/mbxcolors/palettes/wallp"
mkdir -p "$WALLPALDIR"
read WALLPATH<<< $(grep file "$HOME/.config/nitrogen/bg-saved.cfg" | cut -d'=' -f2)
WALLPAPER=${WALLPATH##*/}
if [ ! -f "$WALLPALDIR/$WALLPAPER.clr" ]; then
convert ${WALLPATH} -resize 25% -colors 16 -unique-colors txt:- |grep -v '^#'| awk '{print substr($3,1,7)}' |pastel sort-by brightness |pastel format hex > "$WALLPALDIR/$WALLPAPER.clr"
fi
#mapfile -t wallcolors < "$WALLPALDIR/$WALLPAPER.clr"
out2+=("^tag(wallcolors)")
out2+=("^sep($WALLCOLORS)")
out2+=("$EXPOSE_IN_ROOTMENU ,$ME setvar expose=wallpaper;$ME")
out2+=("^sep()")
while read -r color name;do
out2+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span></tt> ,$ME getcolorcode '$color'")
done < "$WALLPALDIR/$WALLPAPER.clr"
out2+=("^sep()")
out2+=("$RANDWALL,nitrogen --random ${RANDWALLDIR} --set-scaled --save;$ME setvar expose=wallpaper;$ME")
fi
out1+=("$IMAGICKCOLORS,mbxcolors imagick")
out1+=("^sep($SETTINGS)")
out1+=("$PREFERENCES,^pipe($ME preferences)")
out1+=("^sep(Settings)")
out1+=("Preferences,^pipe($ME preferences)")
out1+=("^sep()")
out1+=("QUIT,^quit()")
LNG=${LANG:0:2}
if [[ -f "/usr/share/mbxcolors/help/$LNG.html" ]];then
out1+=("$HELP,yhtml /usr/share/mbxcolors/help/$LNG.html 'Mabox Help - ColorMenu'")
else
out1+=("$HELP,yhtml /usr/share/mbxcolors/help/en.html 'Mabox Help - ColorMenu'")
fi
if [ $htmlcolors = "yes" ]; then
htmlroot="^sep()
${HTMLCOLORS},^checkout(html)
"
htmlsub="^tag(html)
. ${DATA_DIR}/htmlsub.csv"
htmlclrs=". ${DATA_DIR}/htmlclrs.csv"
else
htmlroot="" htmlsub="" htmlclrs=""
fi
cat << EOF > ${MENU_ITEMS}
$(printf '%s\n' "${out[@]}")
@ -373,6 +428,7 @@ $(printf '%s\n' "${out2[@]}")
${htmlclrs}
$(printf '%s\n' "${out3[@]}")
$(printf '%s\n' "${out4[@]}")
EOF
jgmenu --config-file=${CONFIG_FILE} --csv-file=${MENU_ITEMS} 2>/dev/null
#printf '%s\n' "${out3[@]}"
@ -380,55 +436,158 @@ exit 0
}
imagick() {
echo "not implemented"
if [[ -f /usr/share/mb-jgtools/pipemenu-standalone.cfg ]];then
. /usr/share/mb-jgtools/pipemenu-standalone.cfg
. $HOME/.config/mabox/mabox.conf
fi
case $LANG in
pl*) TYPE_TO_SEARCH="pisz aby wyszukać"
IMAGICKCOLORS="Kolory Image Magick"
BACK="Wróć do Menu Kolorów"
;;
*) TYPE_TO_SEARCH="type to search"
IMAGICKCOLORS="Image Magick Colors"
BACK="Back to ColorMenu"
;;
esac
#MENU_PADDING_TOP=${jgtools_padding:-24}
MENU_PADDING_TOP=$((jgtools_padding+24))
JGWIDTH="300"
ITEM_HALIGN="center"
jgmenu_icon_size=0
menu_margin_x=${submenu_spacing:-0}
[ $(pidof picom) ] && MENU_RADIUS=$jgtools_radius
jgmenu_font="Noto Sans Medium 12"
MENU_HALIGN="center"
MENU_VALIGN="center"
TABS="280"
icons=0
iconmargin=0
item_height_factor=240
MENU_HEIGHT_MAX=480
mkconfigfile
trap "rm -f ${CONFIG_FILE} ${MENU_ITEMS}" EXIT
out+=("^sep($IMAGICKCOLORS)")
out+=("$BACK,mbxcolors")
out+=("^sep()")
while read -r color name;do
out+=("<tt><small>$color</small> <span bgcolor='$color'><sub> </sub> <sup> </sup></span> $name</tt> ,$ME getcolorcode '$color'")
done < "$DATA_DIR/imagick.txt"
cat << EOF > ${MENU_ITEMS}
@search,,$((jgtools_padding + 32)),$((jgtools_padding + 4)),292,20,4,left,top,auto,#262626,"""<big></big> <i>$TYPE_TO_SEARCH</i>"""
$(printf '%s\n' "${out[@]}")
EOF
jgmenu --config-file=${CONFIG_FILE} --csv-file=${MENU_ITEMS} 2>/dev/null
}
preferences() {
out2+=("^sep(Settings)")
case $LANG in
pl*)
SETTINGS="Ustawienia"
CLICK_ACTION="Akcja po kliknięciu w kolor:"
EXPOSE="Pokaż w menu głównym:"
HTMLCOLORS="Kolory HTML:"
HTML="Pokaż kolory HTML?"
BUILTIN="Wbudowane palety:"
BUILT="Pokaż wbudowane palety?"
PICKER="Pobieranie kolorów z ekranu:"
POSITION="Pozycja:"
RESET="Zresetuj ustawienia"
EDIT_CONF="Edytuj plik konfiguracyjny"
OPEN_DIR="Otwórz katalog z konfiguracją"
OUTFORMAT="Format wyjściowy"
PASTE="<b>paste</b> (wklej natychmiast)"
COPY="<b>copy</b> (kopiuj do schowka)"
SHOW_IN_ROOT="Pokazuj w menu głównym"
PICKED="<b>picked</b> ostatnio dodane kolory"
USED="<b>used</b> ostatnio użyte kolory"
PALETTE="<b>palette</b> ostatnio użyta paleta"
WALLPAPER="<b>wallpaper</b> kolory z tapety"
COLORPICKER="Pobieracz kolorów"
POS="Pozycja na ekranie"
;;
*)
SETTINGS="Settings"
CLICK_ACTION="Color click action:"
EXPOSE="Expose in rootmenu:"
HTMLCOLORS="HTML colors:"
HTML="Show HTML colors?"
BUILTIN="Built-in palettes:"
BUILT="Show Built-in palettes?"
PICKER="Color picker:"
POSITION="Position:"
RESET="Reset to defaults"
EDIT_CONF="Edit config file"
OPEN_DIR="Open config directory"
OUTFORMAT="Output format"
PASTE="<b>paste</b> (paste color immediately)"
COPY="<b>copy</b> (copy color to clipboard)"
SHOW_IN_ROOT="Show on top of rootmenu"
PICKED="<b>picked</b> recently picked colors"
USED="<b>used</b> recently used colors"
PALETTE="<b>palette</b> recently used palette"
WALLPAPER="<b>wallpaper</b> colors"
COLORPICKER="Color Picker"
POS="Position on screen"
;;
esac
out2+=("<tt>$(printf "%-20s %20s" "Color click action:" "[<b>$action</b>]")</tt>,^checkout(action)")
out2+=("^sep($SETTINGS)")
out2+=("<tt>$(printf "%-20s %20s" "$CLICK_ACTION" "[<b>$action</b>]")</tt>,^checkout(action)")
out2+=("<tt>$(printf "%-20s %20s" "Format:" "[<b>$format</b>]")</tt>,^checkout(format)")
out2+=("^sep()")
out2+=("<tt>$(printf "%-20s %20s" "Expose on top:" "[<b>$expose</b>]")</tt>,^checkout(expose)")
out2+=("<tt>$(printf "%-20s %20s" "HTML colors:" "[<b>$htmlcolors</b>]")</tt>,^checkout(showhtml)")
out2+=("<tt>$(printf "%-20s %20s" "Built-in palettes:" "[<b>$builtin_palettes</b>]")</tt>,^checkout(builtinpalettes)")
out2+=("<tt>$(printf "%-20s %20s" "$EXPOSE" "[<b>$expose</b>]")</tt>,^checkout(expose)")
out2+=("<tt>$(printf "%-20s %20s" "$HTMLCOLORS:" "[<b>$htmlcolors</b>]")</tt>,^checkout(showhtml)")
out2+=("<tt>$(printf "%-20s %20s" "$BUILTIN" "[<b>$builtin_palettes</b>]")</tt>,^checkout(builtinpalettes)")
out2+=("<tt>$(printf "%-20s %20s" "$PICKER" "[<b>$picker</b>]")</tt>,^checkout(picker)")
out2+=("^sep()")
out2+=("<tt>$(printf "%-20s %20s" "Position:" "[<b>$position</b>]")</tt>,^checkout(position)")
out2+=("<tt>$(printf "%-20s %20s" "$POSITION" "[<b>$position</b>]")</tt>,^checkout(position)")
out2+=("^sep()")
out2+=("Reset to defaults,rm $CNF_FILE;$ME")
out2+=("$RESET,rm $CNF_FILE;$ME")
out2+=("^sep()")
out2+=("Edit config file,xdg-open $CNF_FILE")
out2+=("Open config directory,xdg-open $CNF_DIR")
out2+=("$EDIT_CONF,xdg-open $CNF_FILE")
out2+=("$OPEN_DIR,xdg-open $CNF_DIR")
out2+=("^tag(format)")
out2+=("^sep(Output format)")
out2+=("^sep($OUTFORMAT)")
out2+=("<b>hex</b> <i>#579C8E</i>,$ME setvar format=hex;$ME")
out2+=("<b>rgb</b> <i>rgb(87&#44; 156&#44; 142)</i>,$ME setvar format=rgb;$ME")
out2+=("<b>rgba</b> <i>rgba(87&#44; 156&#44; 142&#44; 1.0)</i>,$ME setvar format=rgba;$ME")
out2+=("^tag(action)")
out2+=("^sep(Color action)")
out2+=("<b>paste</b> (paste color immediately),$ME setvar action=paste;$ME")
out2+=("<b>copy</b> (copy color to clipboard),$ME setvar action=copy;$ME")
out2+=("^sep($CLICK_ACTION)")
out2+=("$PASTE,$ME setvar action=paste;$ME")
out2+=("$COPY,$ME setvar action=copy;$ME")
out2+=("^tag(expose)")
out2+=("^sep(Show on top of rootmenu)")
out2+=("<b>picked</b> recently picked colors,$ME setvar expose=picked;$ME")
out2+=("<b>used</b> recently used colors,$ME setvar expose=used;$ME")
out2+=("<b>palette</b> recently used palette,$ME setvar expose=palette;$ME")
out2+=("<b>html</b> HTML Colors,$ME setvar expose=html;$ME")
out2+=("^sep($SHOW_IN_ROOT)")
out2+=("$PICKED,$ME setvar expose=picked;$ME")
out2+=("$USED,$ME setvar expose=used;$ME")
out2+=("$PALETTE,$ME setvar expose=palette;$ME")
out2+=("$WALLPAPER,$ME setvar expose=wallpaper;$ME")
out2+=("^tag(showhtml)")
out2+=("^sep(Show HTML colors?)")
out2+=("^sep($HTML)")
out2+=("yes,$ME setvar htmlcolors=yes;$ME")
out2+=("no,$ME setvar htmlcolors=no;$ME")
out2+=("^tag(builtinpalettes)")
out2+=("^sep(Show Built-in palettes?)")
out2+=("^sep($BUILT)")
out2+=("yes,$ME setvar builtin_palettes=yes;$ME")
out2+=("no,$ME setvar builtin_palettes=no;$ME")
out2+=("^tag(picker)")
out2+=("^sep($COLORPICKER)")
out2+=("gpick,$ME setvar picker=gpick;$ME")
out2+=("xcolor,$ME setvar picker=xcolor;$ME")
out2+=("^tag(position)")
out2+=("^sep(Position on screen)")
out2+=("^sep($POS)")
out2+=("center,$ME setvar position=center;$ME")
out2+=("topleft,$ME setvar position=topleft;$ME")
out2+=("top,$ME setvar position=top;$ME")

View File

@ -0,0 +1,13 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=Image Magick colors
Name[pl]=Kolory Image Magick
Comment=Image Magick colors picker
Keywords=
StartupNotify=false
Icon=mbxcolors
TryExec=mbxcolors imagick
Exec=mbxcolors imagick
Categories=Graphics;
#NoDisplay=true

View File

@ -1,7 +1,8 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=MBX Colors
Name=ColorMenu
Name[pl]=Menu Kolorów
Comment=Pick, paste and manage colors
Keywords=
StartupNotify=false

Binary file not shown.

Before

Width:  |  Height:  |  Size: 981 B

After

Width:  |  Height:  |  Size: 720 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 334 B

After

Width:  |  Height:  |  Size: 309 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 321 B

After

Width:  |  Height:  |  Size: 356 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 364 B

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 467 B

After

Width:  |  Height:  |  Size: 367 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 602 B

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 649 B

After

Width:  |  Height:  |  Size: 493 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 842 B

After

Width:  |  Height:  |  Size: 580 B

View File

@ -7,7 +7,7 @@
viewBox="0 0 120 120"
version="1.1"
id="svg5"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04, custom)"
sodipodi:docname="mbxcolors.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
@ -25,13 +25,13 @@
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="11.583333"
inkscape:cx="60"
inkscape:cy="57.971223"
inkscape:zoom="5.7916665"
inkscape:cx="115.07914"
inkscape:cy="60.77698"
inkscape:window-width="1920"
inkscape:window-height="1145"
inkscape:window-height="1130"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1">
<sodipodi:guide
@ -57,44 +57,36 @@
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:#859900;fill-opacity:1;stroke-width:1.06499"
style="fill:#8d8d8d;fill-opacity:1;stroke-width:1.06949"
id="rect35"
width="107.74168"
height="19.832161"
height="20"
x="5.6345043"
y="6.5829482"
ry="2.3690994" />
y="5"
ry="2.389149" />
<rect
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:1.06499"
style="fill:#82d454;fill-opacity:1;stroke:none;stroke-width:1.06949"
id="rect119"
width="107.74168"
height="19.832161"
height="20"
x="5.6345043"
y="28"
ry="2.3690994" />
y="35"
ry="2.389149" />
<rect
style="fill:#87cefa;fill-opacity:1;stroke:none;stroke-width:1.065"
id="rect1062"
width="107.74168"
height="19.832161"
x="5.6345043"
y="50.013702"
ry="2.3690994" />
<rect
style="fill:#edd400;fill-opacity:1;stroke:none;stroke-width:1.06522"
style="fill:#fdcc53;fill-opacity:1;stroke:none;stroke-width:1.06972"
id="rect1082"
width="107.78635"
height="19.832161"
x="5.6345043"
y="72"
ry="2.3690994" />
height="20"
x="5.5898337"
y="65"
ry="2.389149" />
<rect
style="fill:#ff6600;stroke:none;stroke-width:1.06499"
style="fill:#4e8cd6;stroke:none;stroke-width:1.06949;fill-opacity:1"
id="rect2268"
width="107.74168"
height="19.832161"
height="20"
x="5.6345043"
y="94.410187"
ry="2.3690994" />
y="95"
ry="2.389149" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,235 @@
/* W3.CSS 4.15 December 2020 by Jan Egil and Borge Refsnes */
html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
/* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}
audio,canvas,progress,video{display:inline-block}progress{vertical-align:baseline}
audio:not([controls]){display:none;height:0}[hidden],template{display:none}
a{background-color:transparent}a:active,a:hover{outline-width:0}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}dfn{font-style:italic}mark{background:#ff0;color:#000}
small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}sup{top:-0.5em}figure{margin:1em 40px}img{border-style:none}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}hr{box-sizing:content-box;height:0;overflow:visible}
button,input,select,textarea,optgroup{font:inherit;margin:0}optgroup{font-weight:bold}
button,input{overflow:visible}button,select{text-transform:none}
button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}
button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}
[type=checkbox],[type=radio]{padding:0}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
/* End extract */
html,body{font-family:Verdana,sans-serif;font-size:15px;line-height:1.5}html{overflow-x:hidden}
h1{font-size:36px}h2{font-size:30px}h3{font-size:24px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px}
.w3-serif{font-family:serif}.w3-sans-serif{font-family:sans-serif}.w3-cursive{font-family:cursive}.w3-monospace{font-family:monospace}
h1,h2,h3,h4,h5,h6{font-family:"Segoe UI",Arial,sans-serif;font-weight:400;margin:10px 0}.w3-wide{letter-spacing:4px}
hr{border:0;border-top:1px solid #eee;margin:20px 0}
.w3-image{max-width:100%;height:auto}img{vertical-align:middle}a{color:inherit}
.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.w3-table-all{border:1px solid #ccc}
.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}.w3-striped tbody tr:nth-child(even){background-color:#f1f1f1}
.w3-table-all tr:nth-child(odd){background-color:#fff}.w3-table-all tr:nth-child(even){background-color:#f1f1f1}
.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#ccc}.w3-centered tr th,.w3-centered tr td{text-align:center}
.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{padding-left:16px}
.w3-btn,.w3-button{border:none;display:inline-block;padding:8px 16px;vertical-align:middle;overflow:hidden;text-decoration:none;color:inherit;background-color:inherit;text-align:center;cursor:pointer;white-space:nowrap}
.w3-btn:hover{box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)}
.w3-btn,.w3-button{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.w3-disabled,.w3-btn:disabled,.w3-button:disabled{cursor:not-allowed;opacity:0.3}.w3-disabled *,:disabled *{pointer-events:none}
.w3-btn.w3-disabled:hover,.w3-btn:disabled:hover{box-shadow:none}
.w3-badge,.w3-tag{background-color:#000;color:#fff;display:inline-block;padding-left:8px;padding-right:8px;text-align:center}.w3-badge{border-radius:50%}
.w3-ul{list-style-type:none;padding:0;margin:0}.w3-ul li{padding:8px 16px;border-bottom:1px solid #ddd}.w3-ul li:last-child{border-bottom:none}
.w3-tooltip,.w3-display-container{position:relative}.w3-tooltip .w3-text{display:none}.w3-tooltip:hover .w3-text{display:inline-block}
.w3-ripple:active{opacity:0.5}.w3-ripple{transition:opacity 0s}
.w3-input{padding:8px;display:block;border:none;border-bottom:1px solid #ccc;width:100%}
.w3-select{padding:9px 0;width:100%;border:none;border-bottom:1px solid #ccc}
.w3-dropdown-click,.w3-dropdown-hover{position:relative;display:inline-block;cursor:pointer}
.w3-dropdown-hover:hover .w3-dropdown-content{display:block}
.w3-dropdown-hover:first-child,.w3-dropdown-click:hover{background-color:#ccc;color:#000}
.w3-dropdown-hover:hover > .w3-button:first-child,.w3-dropdown-click:hover > .w3-button:first-child{background-color:#ccc;color:#000}
.w3-dropdown-content{cursor:auto;color:#000;background-color:#fff;display:none;position:absolute;min-width:160px;margin:0;padding:0;z-index:1}
.w3-check,.w3-radio{width:24px;height:24px;position:relative;top:6px}
.w3-sidebar{height:100%;width:200px;background-color:#fff;position:fixed!important;z-index:1;overflow:auto}
.w3-bar-block .w3-dropdown-hover,.w3-bar-block .w3-dropdown-click{width:100%}
.w3-bar-block .w3-dropdown-hover .w3-dropdown-content,.w3-bar-block .w3-dropdown-click .w3-dropdown-content{min-width:100%}
.w3-bar-block .w3-dropdown-hover .w3-button,.w3-bar-block .w3-dropdown-click .w3-button{width:100%;text-align:left;padding:8px 16px}
.w3-main,#main{transition:margin-left .4s}
.w3-modal{z-index:3;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)}
.w3-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}
.w3-bar{width:100%;overflow:hidden}.w3-center .w3-bar{display:inline-block;width:auto}
.w3-bar .w3-bar-item{padding:8px 16px;float:left;width:auto;border:none;display:block;outline:0}
.w3-bar .w3-dropdown-hover,.w3-bar .w3-dropdown-click{position:static;float:left}
.w3-bar .w3-button{white-space:normal}
.w3-bar-block .w3-bar-item{width:100%;display:block;padding:8px 16px;text-align:left;border:none;white-space:normal;float:none;outline:0}
.w3-bar-block.w3-center .w3-bar-item{text-align:center}.w3-block{display:block;width:100%}
.w3-responsive{display:block;overflow-x:auto}
.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,
.w3-cell-row:before,.w3-cell-row:after,.w3-clear:after,.w3-clear:before,.w3-bar:before,.w3-bar:after{content:"";display:table;clear:both}
.w3-col,.w3-half,.w3-third,.w3-twothird,.w3-threequarter,.w3-quarter{float:left;width:100%}
.w3-col.s1{width:8.33333%}.w3-col.s2{width:16.66666%}.w3-col.s3{width:24.99999%}.w3-col.s4{width:33.33333%}
.w3-col.s5{width:41.66666%}.w3-col.s6{width:49.99999%}.w3-col.s7{width:58.33333%}.w3-col.s8{width:66.66666%}
.w3-col.s9{width:74.99999%}.w3-col.s10{width:83.33333%}.w3-col.s11{width:91.66666%}.w3-col.s12{width:99.99999%}
@media (min-width:601px){.w3-col.m1{width:8.33333%}.w3-col.m2{width:16.66666%}.w3-col.m3,.w3-quarter{width:24.99999%}.w3-col.m4,.w3-third{width:33.33333%}
.w3-col.m5{width:41.66666%}.w3-col.m6,.w3-half{width:49.99999%}.w3-col.m7{width:58.33333%}.w3-col.m8,.w3-twothird{width:66.66666%}
.w3-col.m9,.w3-threequarter{width:74.99999%}.w3-col.m10{width:83.33333%}.w3-col.m11{width:91.66666%}.w3-col.m12{width:99.99999%}}
@media (min-width:993px){.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3{width:24.99999%}.w3-col.l4{width:33.33333%}
.w3-col.l5{width:41.66666%}.w3-col.l6{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8{width:66.66666%}
.w3-col.l9{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}}
.w3-rest{overflow:hidden}.w3-stretch{margin-left:-16px;margin-right:-16px}
.w3-content,.w3-auto{margin-left:auto;margin-right:auto}.w3-content{max-width:980px}.w3-auto{max-width:1140px}
.w3-cell-row{display:table;width:100%}.w3-cell{display:table-cell}
.w3-cell-top{vertical-align:top}.w3-cell-middle{vertical-align:middle}.w3-cell-bottom{vertical-align:bottom}
.w3-hide{display:none!important}.w3-show-block,.w3-show{display:block!important}.w3-show-inline-block{display:inline-block!important}
@media (max-width:1205px){.w3-auto{max-width:95%}}
@media (max-width:600px){.w3-modal-content{margin:0 10px;width:auto!important}.w3-modal{padding-top:30px}
.w3-dropdown-hover.w3-mobile .w3-dropdown-content,.w3-dropdown-click.w3-mobile .w3-dropdown-content{position:relative}
.w3-hide-small{display:none!important}.w3-mobile{display:block;width:100%!important}.w3-bar-item.w3-mobile,.w3-dropdown-hover.w3-mobile,.w3-dropdown-click.w3-mobile{text-align:center}
.w3-dropdown-hover.w3-mobile,.w3-dropdown-hover.w3-mobile .w3-btn,.w3-dropdown-hover.w3-mobile .w3-button,.w3-dropdown-click.w3-mobile,.w3-dropdown-click.w3-mobile .w3-btn,.w3-dropdown-click.w3-mobile .w3-button{width:100%}}
@media (max-width:768px){.w3-modal-content{width:500px}.w3-modal{padding-top:50px}}
@media (min-width:993px){.w3-modal-content{width:900px}.w3-hide-large{display:none!important}.w3-sidebar.w3-collapse{display:block!important}}
@media (max-width:992px) and (min-width:601px){.w3-hide-medium{display:none!important}}
@media (max-width:992px){.w3-sidebar.w3-collapse{display:none}.w3-main{margin-left:0!important;margin-right:0!important}.w3-auto{max-width:100%}}
.w3-top,.w3-bottom{position:fixed;width:100%;z-index:1}.w3-top{top:0}.w3-bottom{bottom:0}
.w3-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);z-index:2}
.w3-display-topleft{position:absolute;left:0;top:0}.w3-display-topright{position:absolute;right:0;top:0}
.w3-display-bottomleft{position:absolute;left:0;bottom:0}.w3-display-bottomright{position:absolute;right:0;bottom:0}
.w3-display-middle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}
.w3-display-left{position:absolute;top:50%;left:0%;transform:translate(0%,-50%);-ms-transform:translate(-0%,-50%)}
.w3-display-right{position:absolute;top:50%;right:0%;transform:translate(0%,-50%);-ms-transform:translate(0%,-50%)}
.w3-display-topmiddle{position:absolute;left:50%;top:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-bottommiddle{position:absolute;left:50%;bottom:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-container:hover .w3-display-hover{display:block}.w3-display-container:hover span.w3-display-hover{display:inline-block}.w3-display-hover{display:none}
.w3-display-position{position:absolute}
.w3-circle{border-radius:50%}
.w3-round-small{border-radius:2px}.w3-round,.w3-round-medium{border-radius:4px}.w3-round-large{border-radius:8px}.w3-round-xlarge{border-radius:16px}.w3-round-xxlarge{border-radius:32px}
.w3-row-padding,.w3-row-padding>.w3-half,.w3-row-padding>.w3-third,.w3-row-padding>.w3-twothird,.w3-row-padding>.w3-threequarter,.w3-row-padding>.w3-quarter,.w3-row-padding>.w3-col{padding:0 8px}
.w3-container,.w3-panel{padding:0.01em 16px}.w3-panel{margin-top:16px;margin-bottom:16px}
.w3-code,.w3-codespan{font-family:Consolas,"courier new";font-size:16px}
.w3-code{width:auto;background-color:#fff;padding:8px 12px;border-left:4px solid #4CAF50;word-wrap:break-word}
.w3-codespan{color:crimson;background-color:#f1f1f1;padding-left:4px;padding-right:4px;font-size:110%}
.w3-card,.w3-card-2{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}
.w3-card-4,.w3-hover-shadow:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)}
.w3-spin{animation:w3-spin 2s infinite linear}@keyframes w3-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.w3-animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.w3-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.w3-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.w3-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
.w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.w3-animate-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}
.w3-opacity,.w3-hover-opacity:hover{opacity:0.60}.w3-opacity-off,.w3-hover-opacity-off:hover{opacity:1}
.w3-opacity-max{opacity:0.25}.w3-opacity-min{opacity:0.75}
.w3-greyscale-max,.w3-grayscale-max,.w3-hover-greyscale:hover,.w3-hover-grayscale:hover{filter:grayscale(100%)}
.w3-greyscale,.w3-grayscale{filter:grayscale(75%)}.w3-greyscale-min,.w3-grayscale-min{filter:grayscale(50%)}
.w3-sepia{filter:sepia(75%)}.w3-sepia-max,.w3-hover-sepia:hover{filter:sepia(100%)}.w3-sepia-min{filter:sepia(50%)}
.w3-tiny{font-size:10px!important}.w3-small{font-size:12px!important}.w3-medium{font-size:15px!important}.w3-large{font-size:18px!important}
.w3-xlarge{font-size:24px!important}.w3-xxlarge{font-size:36px!important}.w3-xxxlarge{font-size:48px!important}.w3-jumbo{font-size:64px!important}
.w3-left-align{text-align:left!important}.w3-right-align{text-align:right!important}.w3-justify{text-align:justify!important}.w3-center{text-align:center!important}
.w3-border-0{border:0!important}.w3-border{border:1px solid #ccc!important}
.w3-border-top{border-top:1px solid #ccc!important}.w3-border-bottom{border-bottom:1px solid #ccc!important}
.w3-border-left{border-left:1px solid #ccc!important}.w3-border-right{border-right:1px solid #ccc!important}
.w3-topbar{border-top:6px solid #ccc!important}.w3-bottombar{border-bottom:6px solid #ccc!important}
.w3-leftbar{border-left:6px solid #ccc!important}.w3-rightbar{border-right:6px solid #ccc!important}
.w3-section,.w3-code{margin-top:16px!important;margin-bottom:16px!important}
.w3-margin{margin:16px!important}.w3-margin-top{margin-top:16px!important}.w3-margin-bottom{margin-bottom:16px!important}
.w3-margin-left{margin-left:16px!important}.w3-margin-right{margin-right:16px!important}
.w3-padding-small{padding:4px 8px!important}.w3-padding{padding:8px 16px!important}.w3-padding-large{padding:12px 24px!important}
.w3-padding-16{padding-top:16px!important;padding-bottom:16px!important}.w3-padding-24{padding-top:24px!important;padding-bottom:24px!important}
.w3-padding-32{padding-top:32px!important;padding-bottom:32px!important}.w3-padding-48{padding-top:48px!important;padding-bottom:48px!important}
.w3-padding-64{padding-top:64px!important;padding-bottom:64px!important}
.w3-padding-top-64{padding-top:64px!important}.w3-padding-top-48{padding-top:48px!important}
.w3-padding-top-32{padding-top:32px!important}.w3-padding-top-24{padding-top:24px!important}
.w3-left{float:left!important}.w3-right{float:right!important}
.w3-button:hover{color:#000!important;background-color:#ccc!important}
.w3-transparent,.w3-hover-none:hover{background-color:transparent!important}
.w3-hover-none:hover{box-shadow:none!important}
/* Colors */
.w3-amber,.w3-hover-amber:hover{color:#000!important;background-color:#ffc107!important}
.w3-aqua,.w3-hover-aqua:hover{color:#000!important;background-color:#00ffff!important}
.w3-blue,.w3-hover-blue:hover{color:#fff!important;background-color:#2196F3!important}
.w3-light-blue,.w3-hover-light-blue:hover{color:#000!important;background-color:#87CEEB!important}
.w3-brown,.w3-hover-brown:hover{color:#fff!important;background-color:#795548!important}
.w3-cyan,.w3-hover-cyan:hover{color:#000!important;background-color:#00bcd4!important}
.w3-blue-grey,.w3-hover-blue-grey:hover,.w3-blue-gray,.w3-hover-blue-gray:hover{color:#fff!important;background-color:#607d8b!important}
.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:#4CAF50!important}
.w3-light-green,.w3-hover-light-green:hover{color:#000!important;background-color:#8bc34a!important}
.w3-indigo,.w3-hover-indigo:hover{color:#fff!important;background-color:#3f51b5!important}
.w3-khaki,.w3-hover-khaki:hover{color:#000!important;background-color:#f0e68c!important}
.w3-lime,.w3-hover-lime:hover{color:#000!important;background-color:#cddc39!important}
.w3-orange,.w3-hover-orange:hover{color:#000!important;background-color:#ff9800!important}
.w3-deep-orange,.w3-hover-deep-orange:hover{color:#fff!important;background-color:#ff5722!important}
.w3-pink,.w3-hover-pink:hover{color:#fff!important;background-color:#e91e63!important}
.w3-purple,.w3-hover-purple:hover{color:#fff!important;background-color:#9c27b0!important}
.w3-deep-purple,.w3-hover-deep-purple:hover{color:#fff!important;background-color:#673ab7!important}
.w3-red,.w3-hover-red:hover{color:#fff!important;background-color:#f44336!important}
.w3-sand,.w3-hover-sand:hover{color:#000!important;background-color:#fdf5e6!important}
.w3-teal,.w3-hover-teal:hover{color:#fff!important;background-color:#009688!important}
.w3-yellow,.w3-hover-yellow:hover{color:#000!important;background-color:#ffeb3b!important}
.w3-white,.w3-hover-white:hover{color:#000!important;background-color:#fff!important}
.w3-black,.w3-hover-black:hover{color:#fff!important;background-color:#000!important}
.w3-grey,.w3-hover-grey:hover,.w3-gray,.w3-hover-gray:hover{color:#000!important;background-color:#9e9e9e!important}
.w3-light-grey,.w3-hover-light-grey:hover,.w3-light-gray,.w3-hover-light-gray:hover{color:#000!important;background-color:#f1f1f1!important}
.w3-dark-grey,.w3-hover-dark-grey:hover,.w3-dark-gray,.w3-hover-dark-gray:hover{color:#fff!important;background-color:#616161!important}
.w3-pale-red,.w3-hover-pale-red:hover{color:#000!important;background-color:#ffdddd!important}
.w3-pale-green,.w3-hover-pale-green:hover{color:#000!important;background-color:#ddffdd!important}
.w3-pale-yellow,.w3-hover-pale-yellow:hover{color:#000!important;background-color:#ffffcc!important}
.w3-pale-blue,.w3-hover-pale-blue:hover{color:#000!important;background-color:#ddffff!important}
.w3-text-amber,.w3-hover-text-amber:hover{color:#ffc107!important}
.w3-text-aqua,.w3-hover-text-aqua:hover{color:#00ffff!important}
.w3-text-blue,.w3-hover-text-blue:hover{color:#2196F3!important}
.w3-text-light-blue,.w3-hover-text-light-blue:hover{color:#87CEEB!important}
.w3-text-brown,.w3-hover-text-brown:hover{color:#795548!important}
.w3-text-cyan,.w3-hover-text-cyan:hover{color:#00bcd4!important}
.w3-text-blue-grey,.w3-hover-text-blue-grey:hover,.w3-text-blue-gray,.w3-hover-text-blue-gray:hover{color:#607d8b!important}
.w3-text-green,.w3-hover-text-green:hover{color:#4CAF50!important}
.w3-text-light-green,.w3-hover-text-light-green:hover{color:#8bc34a!important}
.w3-text-indigo,.w3-hover-text-indigo:hover{color:#3f51b5!important}
.w3-text-khaki,.w3-hover-text-khaki:hover{color:#b4aa50!important}
.w3-text-lime,.w3-hover-text-lime:hover{color:#cddc39!important}
.w3-text-orange,.w3-hover-text-orange:hover{color:#ff9800!important}
.w3-text-deep-orange,.w3-hover-text-deep-orange:hover{color:#ff5722!important}
.w3-text-pink,.w3-hover-text-pink:hover{color:#e91e63!important}
.w3-text-purple,.w3-hover-text-purple:hover{color:#9c27b0!important}
.w3-text-deep-purple,.w3-hover-text-deep-purple:hover{color:#673ab7!important}
.w3-text-red,.w3-hover-text-red:hover{color:#f44336!important}
.w3-text-sand,.w3-hover-text-sand:hover{color:#fdf5e6!important}
.w3-text-teal,.w3-hover-text-teal:hover{color:#009688!important}
.w3-text-yellow,.w3-hover-text-yellow:hover{color:#d2be0e!important}
.w3-text-white,.w3-hover-text-white:hover{color:#fff!important}
.w3-text-black,.w3-hover-text-black:hover{color:#000!important}
.w3-text-grey,.w3-hover-text-grey:hover,.w3-text-gray,.w3-hover-text-gray:hover{color:#757575!important}
.w3-text-light-grey,.w3-hover-text-light-grey:hover,.w3-text-light-gray,.w3-hover-text-light-gray:hover{color:#f1f1f1!important}
.w3-text-dark-grey,.w3-hover-text-dark-grey:hover,.w3-text-dark-gray,.w3-hover-text-dark-gray:hover{color:#3a3a3a!important}
.w3-border-amber,.w3-hover-border-amber:hover{border-color:#ffc107!important}
.w3-border-aqua,.w3-hover-border-aqua:hover{border-color:#00ffff!important}
.w3-border-blue,.w3-hover-border-blue:hover{border-color:#2196F3!important}
.w3-border-light-blue,.w3-hover-border-light-blue:hover{border-color:#87CEEB!important}
.w3-border-brown,.w3-hover-border-brown:hover{border-color:#795548!important}
.w3-border-cyan,.w3-hover-border-cyan:hover{border-color:#00bcd4!important}
.w3-border-blue-grey,.w3-hover-border-blue-grey:hover,.w3-border-blue-gray,.w3-hover-border-blue-gray:hover{border-color:#607d8b!important}
.w3-border-green,.w3-hover-border-green:hover{border-color:#4CAF50!important}
.w3-border-light-green,.w3-hover-border-light-green:hover{border-color:#8bc34a!important}
.w3-border-indigo,.w3-hover-border-indigo:hover{border-color:#3f51b5!important}
.w3-border-khaki,.w3-hover-border-khaki:hover{border-color:#f0e68c!important}
.w3-border-lime,.w3-hover-border-lime:hover{border-color:#cddc39!important}
.w3-border-orange,.w3-hover-border-orange:hover{border-color:#ff9800!important}
.w3-border-deep-orange,.w3-hover-border-deep-orange:hover{border-color:#ff5722!important}
.w3-border-pink,.w3-hover-border-pink:hover{border-color:#e91e63!important}
.w3-border-purple,.w3-hover-border-purple:hover{border-color:#9c27b0!important}
.w3-border-deep-purple,.w3-hover-border-deep-purple:hover{border-color:#673ab7!important}
.w3-border-red,.w3-hover-border-red:hover{border-color:#f44336!important}
.w3-border-sand,.w3-hover-border-sand:hover{border-color:#fdf5e6!important}
.w3-border-teal,.w3-hover-border-teal:hover{border-color:#009688!important}
.w3-border-yellow,.w3-hover-border-yellow:hover{border-color:#ffeb3b!important}
.w3-border-white,.w3-hover-border-white:hover{border-color:#fff!important}
.w3-border-black,.w3-hover-border-black:hover{border-color:#000!important}
.w3-border-grey,.w3-hover-border-grey:hover,.w3-border-gray,.w3-hover-border-gray:hover{border-color:#9e9e9e!important}
.w3-border-light-grey,.w3-hover-border-light-grey:hover,.w3-border-light-gray,.w3-hover-border-light-gray:hover{border-color:#f1f1f1!important}
.w3-border-dark-grey,.w3-hover-border-dark-grey:hover,.w3-border-dark-gray,.w3-hover-border-dark-gray:hover{border-color:#616161!important}
.w3-border-pale-red,.w3-hover-border-pale-red:hover{border-color:#ffe7e7!important}.w3-border-pale-green,.w3-hover-border-pale-green:hover{border-color:#e7ffe7!important}
.w3-border-pale-yellow,.w3-hover-border-pale-yellow:hover{border-color:#ffffcc!important}.w3-border-pale-blue,.w3-hover-border-pale-blue:hover{border-color:#e7ffff!important}

View File

@ -0,0 +1,171 @@
<!DOCTYPE html>
<html>
<title>Mabox Color Menu</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/w3.css">
<style>
body{
background-color:#222222;
color: #909090
}
div.fixed {
position: fixed;
top: 0;
right: 0;
width: 200px;
}
div.fixeddown {
position: fixed;
bottom:0;
right:0;
}
</style>
<body>
<div class="w3-sidebar w3-bar-block w3-dark-grey w3-card" style="width:160px">
<div class="w3-center w3-margin"><img src="./img/mbxcolors.png" onclick="openTab(event, 'ColorMenu')"></div>
<button class="w3-bar-item w3-button w3-small tablink" onclick="openTab(event, 'ColorMenu')">ColorMenu</button>
<button class="w3-bar-item w3-button w3-small tablink" onclick="openTab(event, 'Collect')">Collecting Colors</button>
<button class="w3-bar-item w3-button w3-small tablink" onclick="openTab(event, 'Copy')">Color codes</button>
<button class="w3-bar-item w3-button w3-small tablink" onclick="openTab(event, 'Palette')">Palette Management</button>
<button class="w3-bar-item w3-button w3-small tablink" onclick="openTab(event, 'Wallpaper')">Wallpaper Colors</button>
<button class="w3-bar-item w3-button w3-small tablink" onclick="openTab(event, 'Imagick')">ImageMagick colors</button>
<button class="w3-bar-item w3-button w3-small tablink" onclick="openTab(event, 'Settings')">Settings</button>
</div>
<div style="margin-left:160px;" class="w3-small">
<section id="ColorMenu" class="w3-container tab" style="min-height:100vh;">
<div class="w3-container">
<h2>Color Menu</h2>
<p>an unusual tool that can help you work with colors</p>
<i>development version</i>
<p><ul><li>collect colors from the screen and manage palettes</li>
<li>copy or paste color codes (hex, rgb or rgba)</li>
<li>autogenarate color palette from current wallpaper</li></ul>
</p>
<a class="w3-button w3-round w3-small w3-lime w3-margin" href="run://mbxcolors">Launch Color Menu</a>
</div>
<div class="fixeddown">
<div class="w3-bar w3-tiny">
<div class="w3-bar-item">Mabox Linux Links:</div>
<a href="https://maboxlinux.org" class="w3-bar-item w3-hover-green">www</a>
<a href="https://forum.maboxlinux.org" class="w3-bar-item w3-hover-green">forum</a>
<a href="https://manual.maboxlinux.org/en" class="w3-bar-item w3-hover-green">manual</a>
<a href="https://ko-fi.com/maboxlinux" class="w3-bar-item w3-hover-green">donate</a>
</div>
</div>
</section>
<section id="Collect" class="w3-container tab" style="display:none;min-height:100vh;">
<div class="fixed"><a class="w3-button w3-round w3-small w3-lime w3-margin" href="run://mbxcolors">Launch Color Menu</a></div>
<h2>Collecting colors</h2>
<p></p>
</section>
<section id="Copy" class="w3-container tab" style="display:none;min-height:100vh">
<div class="fixed"><a class="w3-button w3-round w3-small w3-lime w3-margin" href="run://mbxcolors">Launch Color Menu</a></div>
<h2>Copy or paste color codes</h2>
<p>By clicking on color in Color Menu you can <strong>copy</strong> or <strong>paste</strong> color code in needed format - depending how Colormenu is configured.</p>
<h4>Actions</h4>
<table class="w3-table w3-bordered w3-dark-grey w3-small">
<tr class="w3-teal">
<th>Action</th>
<th>Description</th>
</tr>
<tr>
<td><a class="w3-btn w3-yellow w3-tiny" href="run://mbxcolors setvar action=copy">Copy</a></td>
<td>copy color code to the clipboard</td>
</tr>
<tr>
<td><a class="w3-btn w3-yellow w3-tiny" href="run://mbxcolors setvar action=paste">Paste</a></td>
<td>paste color code immadietely in cursor position</td>
</tr>
</table>
<h4>Formats</h4>
<table class="w3-table w3-bordered w3-dark-grey w3-small">
<tr class="w3-teal">
<th>Format</th>
<th>Description</th>
</tr>
<tr>
<td><a class="w3-btn w3-yellow w3-tiny" href="run://mbxcolors setvar format=hex">hex</a></td>
<td>hexadecimal <em>#4e8cd6</em></td>
</tr>
<tr>
<td><a class="w3-btn w3-yellow w3-tiny" href="run://mbxcolors setvar format=rgb">rgb</a></td>
<td>rgb <em>rgb(78, 140, 214)</em></td>
</tr>
<tr>
<td><a class="w3-btn w3-yellow w3-tiny" href="run://mbxcolors setvar format=rgba">rgba</a></td>
<td>rgba<em>rgba(78, 140, 214, 1.0)</em></td>
</tr>
</table>
</section>
<section id="Palette" class="w3-container tab" style="display:none;min-height:100vh">
<div class="fixed"><a class="w3-button w3-round w3-small w3-lime w3-margin" href="run://mbxcolors">Launch Color Menu</a></div>
<h2>Palette management</h2>
<p>Color Menu comes with several built-in color palettes.</p><p> It also generates color palette from currently used wallpaper automatically.</p>
<p>You can create additional own palettes from colors picked from screen or image.</p>
<h4>Pallette format</h4>
</section>
</section>
<section id="Wallpaper" class="w3-container tab" style="display:none;min-height:100vh">
<div class="fixed"><a class="w3-button w3-round w3-small w3-lime w3-margin" href="run://mbxcolors">Launch Color Menu</a></div>
<h2>Wallpaper Colors</h2>
<p></p>
</section>
</section>
<section id="Imagick" class="w3-container tab" style="display:none;min-height:100vh">
<div class="fixed"><a class="w3-button w3-round w3-tiny w3-lime w3-margin w3-display-topright" href="run://mbxcolors imagick">Launch ImageMagick colors selector</a></div>
<h2>ImageMagick colors selector</h2>
<p>ImageMagick colors selector let you pick color codes from a list of named colors recognized by ImageMagick.</p>
</section>
<section id="Settings" class="w3-container tab" style="display:none;min-height:100vh">
<h2>Settings</h2>
<p> </p>
</section>
</div>
<script>
function openTab(evt, tabName) {
var i, x, tablinks;
x = document.getElementsByClassName("tab");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablink");
for (i = 0; i < x.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" w3-gray", "");
}
document.getElementById(tabName).style.display = "block";
evt.currentTarget.className += " w3-gray";
}
function myFunction() {
var input, filter, table, tr, td, i;
input = document.getElementById("myInput");
filter = input.value.toUpperCase();
table = document.getElementById("myTable");
tr = table.getElementsByTagName("tr");
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[0];
if (td) {
txtValue = td.textContent || td.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}
</script>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 493 B

View File

@ -1,161 +1,161 @@
^tag(white)
^sep(White colors)
<tt><span bgcolor='#FFFFFF' fgcolor='#111111'><sub> </sub>#FFFFFF<sup> white </sup></span></tt>,mbxcolors getcolorcode '#FFFFFF';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FFFAFA' fgcolor='#111111'><sub> </sub>#FFFAFA<sup> snow </sup></span></tt>,mbxcolors getcolorcode '#FFFAFA';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#F0FFF0' fgcolor='#111111'><sub> </sub>#F0FFF0<sup> honeydew </sup></span></tt>,mbxcolors getcolorcode '#F0FFF0';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#F5FFFA' fgcolor='#111111'><sub> </sub>#F5FFFA<sup> mintcream </sup></span></tt>,mbxcolors getcolorcode '#F5FFFA';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#F0FFFF' fgcolor='#111111'><sub> </sub>#F0FFFF<sup> azure </sup></span></tt>,mbxcolors getcolorcode '#F0FFFF';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#F0F8FF' fgcolor='#111111'><sub> </sub>#F0F8FF<sup> aliceblue </sup></span></tt>,mbxcolors getcolorcode '#F0F8FF';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#F8F8FF' fgcolor='#111111'><sub> </sub>#F8F8FF<sup> ghostwhite </sup></span></tt>,mbxcolors getcolorcode '#F8F8FF';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#F5F5F5' fgcolor='#111111'><sub> </sub>#F5F5F5<sup> whitesmoke </sup></span></tt>,mbxcolors getcolorcode '#F5F5F5';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FFF5EE' fgcolor='#111111'><sub> </sub>#FFF5EE<sup> seashell </sup></span></tt>,mbxcolors getcolorcode '#FFF5EE';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#F5F5DC' fgcolor='#111111'><sub> </sub>#F5F5DC<sup> beige </sup></span></tt>,mbxcolors getcolorcode '#F5F5DC';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FDF5E6' fgcolor='#111111'><sub> </sub>#FDF5E6<sup> oldlace </sup></span></tt>,mbxcolors getcolorcode '#FDF5E6';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FFFAF0' fgcolor='#111111'><sub> </sub>#FFFAF0<sup> floralwhite </sup></span></tt>,mbxcolors getcolorcode '#FFFAF0';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FFFFF0' fgcolor='#111111'><sub> </sub>#FFFFF0<sup> ivory </sup></span></tt>,mbxcolors getcolorcode '#FFFFF0';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FAEBD7' fgcolor='#111111'><sub> </sub>#FAEBD7<sup> antiquewhite </sup></span></tt>,mbxcolors getcolorcode '#FAEBD7';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FAF0E6' fgcolor='#111111'><sub> </sub>#FAF0E6<sup> linen </sup></span></tt>,mbxcolors getcolorcode '#FAF0E6';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FFF0F5' fgcolor='#111111'><sub> </sub>#FFF0F5<sup> lavenderblush </sup></span></tt>,mbxcolors getcolorcode '#FFF0F5';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FFE4E1' fgcolor='#111111'><sub> </sub>#FFE4E1<sup> mistyrose </sup></span></tt>,mbxcolors getcolorcode '#FFE4E1';mbxcolors setvar expose=html,,,#white
<tt><span bgcolor='#FFFFFF' fgcolor='#111111'><sub> </sub>#FFFFFF<sup> white </sup></span></tt>,mbxcolors getcolorcode '#FFFFFF',,,#white
<tt><span bgcolor='#FFFAFA' fgcolor='#111111'><sub> </sub>#FFFAFA<sup> snow </sup></span></tt>,mbxcolors getcolorcode '#FFFAFA',,,#white
<tt><span bgcolor='#F0FFF0' fgcolor='#111111'><sub> </sub>#F0FFF0<sup> honeydew </sup></span></tt>,mbxcolors getcolorcode '#F0FFF0',,,#white
<tt><span bgcolor='#F5FFFA' fgcolor='#111111'><sub> </sub>#F5FFFA<sup> mintcream </sup></span></tt>,mbxcolors getcolorcode '#F5FFFA',,,#white
<tt><span bgcolor='#F0FFFF' fgcolor='#111111'><sub> </sub>#F0FFFF<sup> azure </sup></span></tt>,mbxcolors getcolorcode '#F0FFFF',,,#white
<tt><span bgcolor='#F0F8FF' fgcolor='#111111'><sub> </sub>#F0F8FF<sup> aliceblue </sup></span></tt>,mbxcolors getcolorcode '#F0F8FF',,,#white
<tt><span bgcolor='#F8F8FF' fgcolor='#111111'><sub> </sub>#F8F8FF<sup> ghostwhite </sup></span></tt>,mbxcolors getcolorcode '#F8F8FF',,,#white
<tt><span bgcolor='#F5F5F5' fgcolor='#111111'><sub> </sub>#F5F5F5<sup> whitesmoke </sup></span></tt>,mbxcolors getcolorcode '#F5F5F5',,,#white
<tt><span bgcolor='#FFF5EE' fgcolor='#111111'><sub> </sub>#FFF5EE<sup> seashell </sup></span></tt>,mbxcolors getcolorcode '#FFF5EE',,,#white
<tt><span bgcolor='#F5F5DC' fgcolor='#111111'><sub> </sub>#F5F5DC<sup> beige </sup></span></tt>,mbxcolors getcolorcode '#F5F5DC',,,#white
<tt><span bgcolor='#FDF5E6' fgcolor='#111111'><sub> </sub>#FDF5E6<sup> oldlace </sup></span></tt>,mbxcolors getcolorcode '#FDF5E6',,,#white
<tt><span bgcolor='#FFFAF0' fgcolor='#111111'><sub> </sub>#FFFAF0<sup> floralwhite </sup></span></tt>,mbxcolors getcolorcode '#FFFAF0',,,#white
<tt><span bgcolor='#FFFFF0' fgcolor='#111111'><sub> </sub>#FFFFF0<sup> ivory </sup></span></tt>,mbxcolors getcolorcode '#FFFFF0',,,#white
<tt><span bgcolor='#FAEBD7' fgcolor='#111111'><sub> </sub>#FAEBD7<sup> antiquewhite </sup></span></tt>,mbxcolors getcolorcode '#FAEBD7',,,#white
<tt><span bgcolor='#FAF0E6' fgcolor='#111111'><sub> </sub>#FAF0E6<sup> linen </sup></span></tt>,mbxcolors getcolorcode '#FAF0E6',,,#white
<tt><span bgcolor='#FFF0F5' fgcolor='#111111'><sub> </sub>#FFF0F5<sup> lavenderblush </sup></span></tt>,mbxcolors getcolorcode '#FFF0F5',,,#white
<tt><span bgcolor='#FFE4E1' fgcolor='#111111'><sub> </sub>#FFE4E1<sup> mistyrose </sup></span></tt>,mbxcolors getcolorcode '#FFE4E1',,,#white
^tag(yellow)
^sep(Yellow colors)
<tt><span bgcolor='#FFFFE0' fgcolor='#111111'><sub> </sub>#FFFFE0<sup> lightyellow </sup></span></tt>,mbxcolors getcolorcode '#FFFFE0';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#FFFACD' fgcolor='#111111'><sub> </sub>#FFFACD<sup> lemonchiffon </sup></span></tt>,mbxcolors getcolorcode '#FFFACD';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#FAFAD2' fgcolor='#111111'><sub> </sub>#FAFAD2<sup> lightgoldenrodyellow </sup></span></tt>,mbxcolors getcolorcode '#FAFAD2';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#FFEFD5' fgcolor='#111111'><sub> </sub>#FFEFD5<sup> papayawhip </sup></span></tt>,mbxcolors getcolorcode '#FFEFD5';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#FFE4B5' fgcolor='#111111'><sub> </sub>#FFE4B5<sup> moccasin </sup></span></tt>,mbxcolors getcolorcode '#FFE4B5';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#FFDAB9' fgcolor='#111111'><sub> </sub>#FFDAB9<sup> peachpuff </sup></span></tt>,mbxcolors getcolorcode '#FFDAB9';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#EEE8AA' fgcolor='#111111'><sub> </sub>#EEE8AA<sup> palegoldenrod </sup></span></tt>,mbxcolors getcolorcode '#EEE8AA';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#F0E68C' fgcolor='#111111'><sub> </sub>#F0E68C<sup> khaki </sup></span></tt>,mbxcolors getcolorcode '#F0E68C';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#BDB76B' fgcolor='#111111'><sub> </sub>#BDB76B<sup> darkkhaki </sup></span></tt>,mbxcolors getcolorcode '#BDB76B';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#FFFF00' fgcolor='#111111'><sub> </sub>#FFFF00<sup> yellow </sup></span></tt>,mbxcolors getcolorcode '#FFFF00';mbxcolors setvar expose=html,,,#yellow
<tt><span bgcolor='#FFFFE0' fgcolor='#111111'><sub> </sub>#FFFFE0<sup> lightyellow </sup></span></tt>,mbxcolors getcolorcode '#FFFFE0',,,#yellow
<tt><span bgcolor='#FFFACD' fgcolor='#111111'><sub> </sub>#FFFACD<sup> lemonchiffon </sup></span></tt>,mbxcolors getcolorcode '#FFFACD',,,#yellow
<tt><span bgcolor='#FAFAD2' fgcolor='#111111'><sub> </sub>#FAFAD2<sup> lightgoldenrodyellow </sup></span></tt>,mbxcolors getcolorcode '#FAFAD2',,,#yellow
<tt><span bgcolor='#FFEFD5' fgcolor='#111111'><sub> </sub>#FFEFD5<sup> papayawhip </sup></span></tt>,mbxcolors getcolorcode '#FFEFD5',,,#yellow
<tt><span bgcolor='#FFE4B5' fgcolor='#111111'><sub> </sub>#FFE4B5<sup> moccasin </sup></span></tt>,mbxcolors getcolorcode '#FFE4B5',,,#yellow
<tt><span bgcolor='#FFDAB9' fgcolor='#111111'><sub> </sub>#FFDAB9<sup> peachpuff </sup></span></tt>,mbxcolors getcolorcode '#FFDAB9',,,#yellow
<tt><span bgcolor='#EEE8AA' fgcolor='#111111'><sub> </sub>#EEE8AA<sup> palegoldenrod </sup></span></tt>,mbxcolors getcolorcode '#EEE8AA',,,#yellow
<tt><span bgcolor='#F0E68C' fgcolor='#111111'><sub> </sub>#F0E68C<sup> khaki </sup></span></tt>,mbxcolors getcolorcode '#F0E68C',,,#yellow
<tt><span bgcolor='#BDB76B' fgcolor='#111111'><sub> </sub>#BDB76B<sup> darkkhaki </sup></span></tt>,mbxcolors getcolorcode '#BDB76B',,,#yellow
<tt><span bgcolor='#FFFF00' fgcolor='#111111'><sub> </sub>#FFFF00<sup> yellow </sup></span></tt>,mbxcolors getcolorcode '#FFFF00',,,#yellow
^tag(orange)
^sep(Orange colors)
<tt><span bgcolor='#FF7F50' fgcolor='#111111'><sub> </sub>#FF7F50<sup> coral </sup></span></tt>,mbxcolors getcolorcode '#FF7F50';mbxcolors setvar expose=html,,,#orange
<tt><span bgcolor='#FF6347' fgcolor='#EEEEEE'><sub> </sub>#FF6347<sup> tomato </sup></span></tt>,mbxcolors getcolorcode '#FF6347';mbxcolors setvar expose=html,,,#orange
<tt><span bgcolor='#FF4500' fgcolor='#EEEEEE'><sub> </sub>#FF4500<sup> orangered </sup></span></tt>,mbxcolors getcolorcode '#FF4500';mbxcolors setvar expose=html,,,#orange
<tt><span bgcolor='#FFD700' fgcolor='#111111'><sub> </sub>#FFD700<sup> gold </sup></span></tt>,mbxcolors getcolorcode '#FFD700';mbxcolors setvar expose=html,,,#orange
<tt><span bgcolor='#FFA500' fgcolor='#111111'><sub> </sub>#FFA500<sup> orange </sup></span></tt>,mbxcolors getcolorcode '#FFA500';mbxcolors setvar expose=html,,,#orange
<tt><span bgcolor='#FF8C00' fgcolor='#111111'><sub> </sub>#FF8C00<sup> darkorange </sup></span></tt>,mbxcolors getcolorcode '#FF8C00';mbxcolors setvar expose=html,,,#orange
<tt><span bgcolor='#FF7F50' fgcolor='#111111'><sub> </sub>#FF7F50<sup> coral </sup></span></tt>,mbxcolors getcolorcode '#FF7F50',,,#orange
<tt><span bgcolor='#FF6347' fgcolor='#EEEEEE'><sub> </sub>#FF6347<sup> tomato </sup></span></tt>,mbxcolors getcolorcode '#FF6347',,,#orange
<tt><span bgcolor='#FF4500' fgcolor='#EEEEEE'><sub> </sub>#FF4500<sup> orangered </sup></span></tt>,mbxcolors getcolorcode '#FF4500',,,#orange
<tt><span bgcolor='#FFD700' fgcolor='#111111'><sub> </sub>#FFD700<sup> gold </sup></span></tt>,mbxcolors getcolorcode '#FFD700',,,#orange
<tt><span bgcolor='#FFA500' fgcolor='#111111'><sub> </sub>#FFA500<sup> orange </sup></span></tt>,mbxcolors getcolorcode '#FFA500',,,#orange
<tt><span bgcolor='#FF8C00' fgcolor='#111111'><sub> </sub>#FF8C00<sup> darkorange </sup></span></tt>,mbxcolors getcolorcode '#FF8C00',,,#orange
^tag(pink)
^sep(Pink colors)
<tt><span bgcolor='#FFC0CB' fgcolor='#111111'><sub> </sub>#FFC0CB<sup> pink </sup></span></tt>,mbxcolors getcolorcode '#FFC0CB';mbxcolors setvar expose=html,,,#pink
<tt><span bgcolor='#FFB6C1' fgcolor='#111111'><sub> </sub>#FFB6C1<sup> lightpink </sup></span></tt>,mbxcolors getcolorcode '#FFB6C1';mbxcolors setvar expose=html,,,#pink
<tt><span bgcolor='#FF69B4' fgcolor='#111111'><sub> </sub>#FF69B4<sup> hotpink </sup></span></tt>,mbxcolors getcolorcode '#FF69B4';mbxcolors setvar expose=html,,,#pink
<tt><span bgcolor='#FF1493' fgcolor='#EEEEEE'><sub> </sub>#FF1493<sup> deeppink </sup></span></tt>,mbxcolors getcolorcode '#FF1493';mbxcolors setvar expose=html,,,#pink
<tt><span bgcolor='#DB7093' fgcolor='#EEEEEE'><sub> </sub>#DB7093<sup> palevioletred </sup></span></tt>,mbxcolors getcolorcode '#DB7093';mbxcolors setvar expose=html,,,#pink
<tt><span bgcolor='#C71585' fgcolor='#EEEEEE'><sub> </sub>#C71585<sup> mediumvioletred </sup></span></tt>,mbxcolors getcolorcode '#C71585';mbxcolors setvar expose=html,,,#pink
<tt><span bgcolor='#FFC0CB' fgcolor='#111111'><sub> </sub>#FFC0CB<sup> pink </sup></span></tt>,mbxcolors getcolorcode '#FFC0CB',,,#pink
<tt><span bgcolor='#FFB6C1' fgcolor='#111111'><sub> </sub>#FFB6C1<sup> lightpink </sup></span></tt>,mbxcolors getcolorcode '#FFB6C1',,,#pink
<tt><span bgcolor='#FF69B4' fgcolor='#111111'><sub> </sub>#FF69B4<sup> hotpink </sup></span></tt>,mbxcolors getcolorcode '#FF69B4',,,#pink
<tt><span bgcolor='#FF1493' fgcolor='#EEEEEE'><sub> </sub>#FF1493<sup> deeppink </sup></span></tt>,mbxcolors getcolorcode '#FF1493',,,#pink
<tt><span bgcolor='#DB7093' fgcolor='#EEEEEE'><sub> </sub>#DB7093<sup> palevioletred </sup></span></tt>,mbxcolors getcolorcode '#DB7093',,,#pink
<tt><span bgcolor='#C71585' fgcolor='#EEEEEE'><sub> </sub>#C71585<sup> mediumvioletred </sup></span></tt>,mbxcolors getcolorcode '#C71585',,,#pink
^tag(red)
^sep(Red colors)
<tt><span bgcolor='#FFA07A' fgcolor='#111111'><sub> </sub>#FFA07A<sup> lightsalmon </sup></span></tt>,mbxcolors getcolorcode '#FFA07A';mbxcolors setvar expose=html,,,#red
<tt><span bgcolor='#FA8072' fgcolor='#111111'><sub> </sub>#FA8072<sup> salmon </sup></span></tt>,mbxcolors getcolorcode '#FA8072';mbxcolors setvar expose=html,,,#red
<tt><span bgcolor='#E9967A' fgcolor='#111111'><sub> </sub>#E9967A<sup> darksalmon </sup></span></tt>,mbxcolors getcolorcode '#E9967A';mbxcolors setvar expose=html,,,#red
<tt><span bgcolor='#F08080' fgcolor='#111111'><sub> </sub>#F08080<sup> lightcoral </sup></span></tt>,mbxcolors getcolorcode '#F08080';mbxcolors setvar expose=html,,,#red
<tt><span bgcolor='#CD5C5C' fgcolor='#EEEEEE'><sub> </sub>#CD5C5C<sup> indianred </sup></span></tt>,mbxcolors getcolorcode '#CD5C5C';mbxcolors setvar expose=html,,,#red
<tt><span bgcolor='#DC143C' fgcolor='#EEEEEE'><sub> </sub>#DC143C<sup> crimson </sup></span></tt>,mbxcolors getcolorcode '#DC143C';mbxcolors setvar expose=html,,,#red
<tt><span bgcolor='#B22222' fgcolor='#EEEEEE'><sub> </sub>#B22222<sup> firebrick </sup></span></tt>,mbxcolors getcolorcode '#B22222';mbxcolors setvar expose=html,,,#red
<tt><span bgcolor='#FF0000' fgcolor='#EEEEEE'><sub> </sub>#FF0000<sup> red </sup></span></tt>,mbxcolors getcolorcode '#FF0000';mbxcolors setvar expose=html,,,#red
<tt><span bgcolor='#8B0000' fgcolor='#EEEEEE'><sub> </sub>#8B0000<sup> darkreds </sup></span></tt>,mbxcolors getcolorcode '#8B0000';mbxcolors setvar expose=html,,,#red
<tt><span bgcolor='#FFA07A' fgcolor='#111111'><sub> </sub>#FFA07A<sup> lightsalmon </sup></span></tt>,mbxcolors getcolorcode '#FFA07A',,,#red
<tt><span bgcolor='#FA8072' fgcolor='#111111'><sub> </sub>#FA8072<sup> salmon </sup></span></tt>,mbxcolors getcolorcode '#FA8072',,,#red
<tt><span bgcolor='#E9967A' fgcolor='#111111'><sub> </sub>#E9967A<sup> darksalmon </sup></span></tt>,mbxcolors getcolorcode '#E9967A',,,#red
<tt><span bgcolor='#F08080' fgcolor='#111111'><sub> </sub>#F08080<sup> lightcoral </sup></span></tt>,mbxcolors getcolorcode '#F08080',,,#red
<tt><span bgcolor='#CD5C5C' fgcolor='#EEEEEE'><sub> </sub>#CD5C5C<sup> indianred </sup></span></tt>,mbxcolors getcolorcode '#CD5C5C',,,#red
<tt><span bgcolor='#DC143C' fgcolor='#EEEEEE'><sub> </sub>#DC143C<sup> crimson </sup></span></tt>,mbxcolors getcolorcode '#DC143C',,,#red
<tt><span bgcolor='#B22222' fgcolor='#EEEEEE'><sub> </sub>#B22222<sup> firebrick </sup></span></tt>,mbxcolors getcolorcode '#B22222',,,#red
<tt><span bgcolor='#FF0000' fgcolor='#EEEEEE'><sub> </sub>#FF0000<sup> red </sup></span></tt>,mbxcolors getcolorcode '#FF0000',,,#red
<tt><span bgcolor='#8B0000' fgcolor='#EEEEEE'><sub> </sub>#8B0000<sup> darkreds </sup></span></tt>,mbxcolors getcolorcode '#8B0000',,,#red
^tag(brown)
^sep(Brown colors)
<tt><span bgcolor='#FFF8DC' fgcolor='#111111'><sub> </sub>#FFF8DC<sup> cornsilk </sup></span></tt>,mbxcolors getcolorcode '#FFF8DC';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#FFEBCD' fgcolor='#111111'><sub> </sub>#FFEBCD<sup> blanchedalmond </sup></span></tt>,mbxcolors getcolorcode '#FFEBCD';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#FFE4C4' fgcolor='#111111'><sub> </sub>#FFE4C4<sup> bisque </sup></span></tt>,mbxcolors getcolorcode '#FFE4C4';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#FFDEAD' fgcolor='#111111'><sub> </sub>#FFDEAD<sup> navajowhite </sup></span></tt>,mbxcolors getcolorcode '#FFDEAD';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#F5DEB3' fgcolor='#111111'><sub> </sub>#F5DEB3<sup> wheat </sup></span></tt>,mbxcolors getcolorcode '#F5DEB3';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#DEB887' fgcolor='#111111'><sub> </sub>#DEB887<sup> burlywood </sup></span></tt>,mbxcolors getcolorcode '#DEB887';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#D2B48C' fgcolor='#111111'><sub> </sub>#D2B48C<sup> tan </sup></span></tt>,mbxcolors getcolorcode '#D2B48C';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#BC8F8F' fgcolor='#111111'><sub> </sub>#BC8F8F<sup> rosybrown </sup></span></tt>,mbxcolors getcolorcode '#BC8F8F';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#F4A460' fgcolor='#111111'><sub> </sub>#F4A460<sup> sandybrown </sup></span></tt>,mbxcolors getcolorcode '#F4A460';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#DAA520' fgcolor='#111111'><sub> </sub>#DAA520<sup> goldenrod </sup></span></tt>,mbxcolors getcolorcode '#DAA520';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#CD853F' fgcolor='#EEEEEE'><sub> </sub>#CD853F<sup> peru </sup></span></tt>,mbxcolors getcolorcode '#CD853F';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#D2691E' fgcolor='#EEEEEE'><sub> </sub>#D2691E<sup> chocolate </sup></span></tt>,mbxcolors getcolorcode '#D2691E';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#8B4513' fgcolor='#EEEEEE'><sub> </sub>#8B4513<sup> saddlebrown </sup></span></tt>,mbxcolors getcolorcode '#8B4513';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#A0522D' fgcolor='#EEEEEE'><sub> </sub>#A0522D<sup> sienna </sup></span></tt>,mbxcolors getcolorcode '#A0522D';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#A52A2A' fgcolor='#EEEEEE'><sub> </sub>#A52A2A<sup> brown </sup></span></tt>,mbxcolors getcolorcode '#A52A2A';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#800000' fgcolor='#EEEEEE'><sub> </sub>#800000<sup> maroon </sup></span></tt>,mbxcolors getcolorcode '#800000';mbxcolors setvar expose=html,,,#brown
<tt><span bgcolor='#FFF8DC' fgcolor='#111111'><sub> </sub>#FFF8DC<sup> cornsilk </sup></span></tt>,mbxcolors getcolorcode '#FFF8DC',,,#brown
<tt><span bgcolor='#FFEBCD' fgcolor='#111111'><sub> </sub>#FFEBCD<sup> blanchedalmond </sup></span></tt>,mbxcolors getcolorcode '#FFEBCD',,,#brown
<tt><span bgcolor='#FFE4C4' fgcolor='#111111'><sub> </sub>#FFE4C4<sup> bisque </sup></span></tt>,mbxcolors getcolorcode '#FFE4C4',,,#brown
<tt><span bgcolor='#FFDEAD' fgcolor='#111111'><sub> </sub>#FFDEAD<sup> navajowhite </sup></span></tt>,mbxcolors getcolorcode '#FFDEAD',,,#brown
<tt><span bgcolor='#F5DEB3' fgcolor='#111111'><sub> </sub>#F5DEB3<sup> wheat </sup></span></tt>,mbxcolors getcolorcode '#F5DEB3',,,#brown
<tt><span bgcolor='#DEB887' fgcolor='#111111'><sub> </sub>#DEB887<sup> burlywood </sup></span></tt>,mbxcolors getcolorcode '#DEB887',,,#brown
<tt><span bgcolor='#D2B48C' fgcolor='#111111'><sub> </sub>#D2B48C<sup> tan </sup></span></tt>,mbxcolors getcolorcode '#D2B48C',,,#brown
<tt><span bgcolor='#BC8F8F' fgcolor='#111111'><sub> </sub>#BC8F8F<sup> rosybrown </sup></span></tt>,mbxcolors getcolorcode '#BC8F8F',,,#brown
<tt><span bgcolor='#F4A460' fgcolor='#111111'><sub> </sub>#F4A460<sup> sandybrown </sup></span></tt>,mbxcolors getcolorcode '#F4A460',,,#brown
<tt><span bgcolor='#DAA520' fgcolor='#111111'><sub> </sub>#DAA520<sup> goldenrod </sup></span></tt>,mbxcolors getcolorcode '#DAA520',,,#brown
<tt><span bgcolor='#CD853F' fgcolor='#EEEEEE'><sub> </sub>#CD853F<sup> peru </sup></span></tt>,mbxcolors getcolorcode '#CD853F',,,#brown
<tt><span bgcolor='#D2691E' fgcolor='#EEEEEE'><sub> </sub>#D2691E<sup> chocolate </sup></span></tt>,mbxcolors getcolorcode '#D2691E',,,#brown
<tt><span bgcolor='#8B4513' fgcolor='#EEEEEE'><sub> </sub>#8B4513<sup> saddlebrown </sup></span></tt>,mbxcolors getcolorcode '#8B4513',,,#brown
<tt><span bgcolor='#A0522D' fgcolor='#EEEEEE'><sub> </sub>#A0522D<sup> sienna </sup></span></tt>,mbxcolors getcolorcode '#A0522D',,,#brown
<tt><span bgcolor='#A52A2A' fgcolor='#EEEEEE'><sub> </sub>#A52A2A<sup> brown </sup></span></tt>,mbxcolors getcolorcode '#A52A2A',,,#brown
<tt><span bgcolor='#800000' fgcolor='#EEEEEE'><sub> </sub>#800000<sup> maroon </sup></span></tt>,mbxcolors getcolorcode '#800000',,,#brown
^tag(green)
^sep(Green colors)
<tt><span bgcolor='#7CFC00' fgcolor='#111111'><sub> </sub>#7CFC00<sup> lawngreen </sup></span></tt>,mbxcolors getcolorcode '#7CFC00';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#7FFF00' fgcolor='#111111'><sub> </sub>#7FFF00<sup> chartreuse </sup></span></tt>,mbxcolors getcolorcode '#7FFF00';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#32CD32' fgcolor='#EEEEEE'><sub> </sub>#32CD32<sup> limegreen </sup></span></tt>,mbxcolors getcolorcode '#32CD32';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#00FF00' fgcolor='#111111'><sub> </sub>#00FF00<sup> lime </sup></span></tt>,mbxcolors getcolorcode '#00FF00';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#228B22' fgcolor='#EEEEEE'><sub> </sub>#228B22<sup> forestgreen </sup></span></tt>,mbxcolors getcolorcode '#228B22';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#008000' fgcolor='#EEEEEE'><sub> </sub>#008000<sup> green </sup></span></tt>,mbxcolors getcolorcode '#008000';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#006400' fgcolor='#EEEEEE'><sub> </sub>#006400<sup> darkgreen </sup></span></tt>,mbxcolors getcolorcode '#006400';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#ADFF2F' fgcolor='#111111'><sub> </sub>#ADFF2F<sup> greenyellow </sup></span></tt>,mbxcolors getcolorcode '#ADFF2F';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#9ACD32' fgcolor='#111111'><sub> </sub>#9ACD32<sup> yellowgreen </sup></span></tt>,mbxcolors getcolorcode '#9ACD32';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#00FF7F' fgcolor='#111111'><sub> </sub>#00FF7F<sup> springgreen </sup></span></tt>,mbxcolors getcolorcode '#00FF7F';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#00FA9A' fgcolor='#111111'><sub> </sub>#00FA9A<sup> mediumspringgreen </sup></span></tt>,mbxcolors getcolorcode '#00FA9A';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#90EE90' fgcolor='#111111'><sub> </sub>#90EE90<sup> lightgreen </sup></span></tt>,mbxcolors getcolorcode '#90EE90';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#98FB98' fgcolor='#111111'><sub> </sub>#98FB98<sup> palegreen </sup></span></tt>,mbxcolors getcolorcode '#98FB98';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#8FBC8F' fgcolor='#111111'><sub> </sub>#8FBC8F<sup> darkseagreen </sup></span></tt>,mbxcolors getcolorcode '#8FBC8F';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#3CB371' fgcolor='#EEEEEE'><sub> </sub>#3CB371<sup> mediumseagreen </sup></span></tt>,mbxcolors getcolorcode '#3CB371';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#2E8B57' fgcolor='#EEEEEE'><sub> </sub>#2E8B57<sup> seagreen </sup></span></tt>,mbxcolors getcolorcode '#2E8B57';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#808000' fgcolor='#EEEEEE'><sub> </sub>#808000<sup> olive </sup></span></tt>,mbxcolors getcolorcode '#808000';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#556B2F' fgcolor='#EEEEEE'><sub> </sub>#556B2F<sup> darkolivegreen </sup></span></tt>,mbxcolors getcolorcode '#556B2F';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#6B8E23' fgcolor='#EEEEEE'><sub> </sub>#6B8E23<sup> olivedrab </sup></span></tt>,mbxcolors getcolorcode '#6B8E23';mbxcolors setvar expose=html,,,#green
<tt><span bgcolor='#7CFC00' fgcolor='#111111'><sub> </sub>#7CFC00<sup> lawngreen </sup></span></tt>,mbxcolors getcolorcode '#7CFC00',,,#green
<tt><span bgcolor='#7FFF00' fgcolor='#111111'><sub> </sub>#7FFF00<sup> chartreuse </sup></span></tt>,mbxcolors getcolorcode '#7FFF00',,,#green
<tt><span bgcolor='#32CD32' fgcolor='#EEEEEE'><sub> </sub>#32CD32<sup> limegreen </sup></span></tt>,mbxcolors getcolorcode '#32CD32',,,#green
<tt><span bgcolor='#00FF00' fgcolor='#111111'><sub> </sub>#00FF00<sup> lime </sup></span></tt>,mbxcolors getcolorcode '#00FF00',,,#green
<tt><span bgcolor='#228B22' fgcolor='#EEEEEE'><sub> </sub>#228B22<sup> forestgreen </sup></span></tt>,mbxcolors getcolorcode '#228B22',,,#green
<tt><span bgcolor='#008000' fgcolor='#EEEEEE'><sub> </sub>#008000<sup> green </sup></span></tt>,mbxcolors getcolorcode '#008000',,,#green
<tt><span bgcolor='#006400' fgcolor='#EEEEEE'><sub> </sub>#006400<sup> darkgreen </sup></span></tt>,mbxcolors getcolorcode '#006400',,,#green
<tt><span bgcolor='#ADFF2F' fgcolor='#111111'><sub> </sub>#ADFF2F<sup> greenyellow </sup></span></tt>,mbxcolors getcolorcode '#ADFF2F',,,#green
<tt><span bgcolor='#9ACD32' fgcolor='#111111'><sub> </sub>#9ACD32<sup> yellowgreen </sup></span></tt>,mbxcolors getcolorcode '#9ACD32',,,#green
<tt><span bgcolor='#00FF7F' fgcolor='#111111'><sub> </sub>#00FF7F<sup> springgreen </sup></span></tt>,mbxcolors getcolorcode '#00FF7F',,,#green
<tt><span bgcolor='#00FA9A' fgcolor='#111111'><sub> </sub>#00FA9A<sup> mediumspringgreen </sup></span></tt>,mbxcolors getcolorcode '#00FA9A',,,#green
<tt><span bgcolor='#90EE90' fgcolor='#111111'><sub> </sub>#90EE90<sup> lightgreen </sup></span></tt>,mbxcolors getcolorcode '#90EE90',,,#green
<tt><span bgcolor='#98FB98' fgcolor='#111111'><sub> </sub>#98FB98<sup> palegreen </sup></span></tt>,mbxcolors getcolorcode '#98FB98',,,#green
<tt><span bgcolor='#8FBC8F' fgcolor='#111111'><sub> </sub>#8FBC8F<sup> darkseagreen </sup></span></tt>,mbxcolors getcolorcode '#8FBC8F',,,#green
<tt><span bgcolor='#3CB371' fgcolor='#EEEEEE'><sub> </sub>#3CB371<sup> mediumseagreen </sup></span></tt>,mbxcolors getcolorcode '#3CB371',,,#green
<tt><span bgcolor='#2E8B57' fgcolor='#EEEEEE'><sub> </sub>#2E8B57<sup> seagreen </sup></span></tt>,mbxcolors getcolorcode '#2E8B57',,,#green
<tt><span bgcolor='#808000' fgcolor='#EEEEEE'><sub> </sub>#808000<sup> olive </sup></span></tt>,mbxcolors getcolorcode '#808000',,,#green
<tt><span bgcolor='#556B2F' fgcolor='#EEEEEE'><sub> </sub>#556B2F<sup> darkolivegreen </sup></span></tt>,mbxcolors getcolorcode '#556B2F',,,#green
<tt><span bgcolor='#6B8E23' fgcolor='#EEEEEE'><sub> </sub>#6B8E23<sup> olivedrab </sup></span></tt>,mbxcolors getcolorcode '#6B8E23',,,#green
^tag(cyan)
^sep(Cyan colors)
<tt><span bgcolor='#E0FFFF' fgcolor='#111111'><sub> </sub>#E0FFFF<sup> lightcyan </sup></span></tt>,mbxcolors getcolorcode '#E0FFFF';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#00FFFF' fgcolor='#111111'><sub> </sub>#00FFFF<sup> cyan </sup></span></tt>,mbxcolors getcolorcode '#00FFFF';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#00FFFF' fgcolor='#111111'><sub> </sub>#00FFFF<sup> aqua </sup></span></tt>,mbxcolors getcolorcode '#00FFFF';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#7FFFD4' fgcolor='#111111'><sub> </sub>#7FFFD4<sup> aquamarine </sup></span></tt>,mbxcolors getcolorcode '#7FFFD4';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#66CDAA' fgcolor='#111111'><sub> </sub>#66CDAA<sup> mediumaquamarine </sup></span></tt>,mbxcolors getcolorcode '#66CDAA';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#AFEEEE' fgcolor='#111111'><sub> </sub>#AFEEEE<sup> paleturquoise </sup></span></tt>,mbxcolors getcolorcode '#AFEEEE';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#40E0D0' fgcolor='#111111'><sub> </sub>#40E0D0<sup> turquoise </sup></span></tt>,mbxcolors getcolorcode '#40E0D0';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#48D1CC' fgcolor='#111111'><sub> </sub>#48D1CC<sup> mediumturquoise </sup></span></tt>,mbxcolors getcolorcode '#48D1CC';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#00CED1' fgcolor='#EEEEEE'><sub> </sub>#00CED1<sup> darkturquoise </sup></span></tt>,mbxcolors getcolorcode '#00CED1';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#20B2AA' fgcolor='#EEEEEE'><sub> </sub>#20B2AA<sup> lightseagreen </sup></span></tt>,mbxcolors getcolorcode '#20B2AA';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#5F9EA0' fgcolor='#EEEEEE'><sub> </sub>#5F9EA0<sup> cadetblue </sup></span></tt>,mbxcolors getcolorcode '#5F9EA0';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#008B8B' fgcolor='#EEEEEE'><sub> </sub>#008B8B<sup> darkcyan </sup></span></tt>,mbxcolors getcolorcode '#008B8B';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#008080' fgcolor='#EEEEEE'><sub> </sub>#008080<sup> teal </sup></span></tt>,mbxcolors getcolorcode '#008080';mbxcolors setvar expose=html,,,#cyan
<tt><span bgcolor='#E0FFFF' fgcolor='#111111'><sub> </sub>#E0FFFF<sup> lightcyan </sup></span></tt>,mbxcolors getcolorcode '#E0FFFF',,,#cyan
<tt><span bgcolor='#00FFFF' fgcolor='#111111'><sub> </sub>#00FFFF<sup> cyan </sup></span></tt>,mbxcolors getcolorcode '#00FFFF',,,#cyan
<tt><span bgcolor='#00FFFF' fgcolor='#111111'><sub> </sub>#00FFFF<sup> aqua </sup></span></tt>,mbxcolors getcolorcode '#00FFFF',,,#cyan
<tt><span bgcolor='#7FFFD4' fgcolor='#111111'><sub> </sub>#7FFFD4<sup> aquamarine </sup></span></tt>,mbxcolors getcolorcode '#7FFFD4',,,#cyan
<tt><span bgcolor='#66CDAA' fgcolor='#111111'><sub> </sub>#66CDAA<sup> mediumaquamarine </sup></span></tt>,mbxcolors getcolorcode '#66CDAA',,,#cyan
<tt><span bgcolor='#AFEEEE' fgcolor='#111111'><sub> </sub>#AFEEEE<sup> paleturquoise </sup></span></tt>,mbxcolors getcolorcode '#AFEEEE',,,#cyan
<tt><span bgcolor='#40E0D0' fgcolor='#111111'><sub> </sub>#40E0D0<sup> turquoise </sup></span></tt>,mbxcolors getcolorcode '#40E0D0',,,#cyan
<tt><span bgcolor='#48D1CC' fgcolor='#111111'><sub> </sub>#48D1CC<sup> mediumturquoise </sup></span></tt>,mbxcolors getcolorcode '#48D1CC',,,#cyan
<tt><span bgcolor='#00CED1' fgcolor='#EEEEEE'><sub> </sub>#00CED1<sup> darkturquoise </sup></span></tt>,mbxcolors getcolorcode '#00CED1',,,#cyan
<tt><span bgcolor='#20B2AA' fgcolor='#EEEEEE'><sub> </sub>#20B2AA<sup> lightseagreen </sup></span></tt>,mbxcolors getcolorcode '#20B2AA',,,#cyan
<tt><span bgcolor='#5F9EA0' fgcolor='#EEEEEE'><sub> </sub>#5F9EA0<sup> cadetblue </sup></span></tt>,mbxcolors getcolorcode '#5F9EA0',,,#cyan
<tt><span bgcolor='#008B8B' fgcolor='#EEEEEE'><sub> </sub>#008B8B<sup> darkcyan </sup></span></tt>,mbxcolors getcolorcode '#008B8B',,,#cyan
<tt><span bgcolor='#008080' fgcolor='#EEEEEE'><sub> </sub>#008080<sup> teal </sup></span></tt>,mbxcolors getcolorcode '#008080',,,#cyan
^tag(blue)
^sep(Blue colors)
<tt><span bgcolor='#B0E0E6' fgcolor='#111111'><sub> </sub>#B0E0E6<sup> powderblue </sup></span></tt>,mbxcolors getcolorcode '#B0E0E6';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#ADD8E6' fgcolor='#111111'><sub> </sub>#ADD8E6<sup> lightblue </sup></span></tt>,mbxcolors getcolorcode '#ADD8E6';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#87CEFA' fgcolor='#111111'><sub> </sub>#87CEFA<sup> lightskyblue </sup></span></tt>,mbxcolors getcolorcode '#87CEFA';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#87CEEB' fgcolor='#111111'><sub> </sub>#87CEEB<sup> skyblue </sup></span></tt>,mbxcolors getcolorcode '#87CEEB';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#00BFFF' fgcolor='#EEEEEE'><sub> </sub>#00BFFF<sup> deepskyblue </sup></span></tt>,mbxcolors getcolorcode '#00BFFF';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#B0C4DE' fgcolor='#111111'><sub> </sub>#B0C4DE<sup> lightsteelblue </sup></span></tt>,mbxcolors getcolorcode '#B0C4DE';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#1E90FF' fgcolor='#EEEEEE'><sub> </sub>#1E90FF<sup> dodgerblue </sup></span></tt>,mbxcolors getcolorcode '#1E90FF';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#6495ED' fgcolor='#EEEEEE'><sub> </sub>#6495ED<sup> cornflowerblue </sup></span></tt>,mbxcolors getcolorcode '#6495ED';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#4682B4' fgcolor='#EEEEEE'><sub> </sub>#4682B4<sup> steelblue </sup></span></tt>,mbxcolors getcolorcode '#4682B4';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#4169E1' fgcolor='#EEEEEE'><sub> </sub>#4169E1<sup> royalblue </sup></span></tt>,mbxcolors getcolorcode '#4169E1';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#0000FF' fgcolor='#EEEEEE'><sub> </sub>#0000FF<sup> blue </sup></span></tt>,mbxcolors getcolorcode '#0000FF';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#0000CD' fgcolor='#EEEEEE'><sub> </sub>#0000CD<sup> mediumblue </sup></span></tt>,mbxcolors getcolorcode '#0000CD';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#00008B' fgcolor='#EEEEEE'><sub> </sub>#00008B<sup> darkblue </sup></span></tt>,mbxcolors getcolorcode '#00008B';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#000080' fgcolor='#EEEEEE'><sub> </sub>#000080<sup> navy </sup></span></tt>,mbxcolors getcolorcode '#000080';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#191970' fgcolor='#EEEEEE'><sub> </sub>#191970<sup> midnightblue </sup></span></tt>,mbxcolors getcolorcode '#191970';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#7B68EE' fgcolor='#EEEEEE'><sub> </sub>#7B68EE<sup> mediumslateblue </sup></span></tt>,mbxcolors getcolorcode '#7B68EE';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#6A5ACD' fgcolor='#EEEEEE'><sub> </sub>#6A5ACD<sup> slateblue </sup></span></tt>,mbxcolors getcolorcode '#6A5ACD';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#483D8B' fgcolor='#EEEEEE'><sub> </sub>#483D8B<sup> darkslateblue </sup></span></tt>,mbxcolors getcolorcode '#483D8B';mbxcolors setvar expose=html,,,#blue
<tt><span bgcolor='#B0E0E6' fgcolor='#111111'><sub> </sub>#B0E0E6<sup> powderblue </sup></span></tt>,mbxcolors getcolorcode '#B0E0E6',,,#blue
<tt><span bgcolor='#ADD8E6' fgcolor='#111111'><sub> </sub>#ADD8E6<sup> lightblue </sup></span></tt>,mbxcolors getcolorcode '#ADD8E6',,,#blue
<tt><span bgcolor='#87CEFA' fgcolor='#111111'><sub> </sub>#87CEFA<sup> lightskyblue </sup></span></tt>,mbxcolors getcolorcode '#87CEFA',,,#blue
<tt><span bgcolor='#87CEEB' fgcolor='#111111'><sub> </sub>#87CEEB<sup> skyblue </sup></span></tt>,mbxcolors getcolorcode '#87CEEB',,,#blue
<tt><span bgcolor='#00BFFF' fgcolor='#EEEEEE'><sub> </sub>#00BFFF<sup> deepskyblue </sup></span></tt>,mbxcolors getcolorcode '#00BFFF',,,#blue
<tt><span bgcolor='#B0C4DE' fgcolor='#111111'><sub> </sub>#B0C4DE<sup> lightsteelblue </sup></span></tt>,mbxcolors getcolorcode '#B0C4DE',,,#blue
<tt><span bgcolor='#1E90FF' fgcolor='#EEEEEE'><sub> </sub>#1E90FF<sup> dodgerblue </sup></span></tt>,mbxcolors getcolorcode '#1E90FF',,,#blue
<tt><span bgcolor='#6495ED' fgcolor='#EEEEEE'><sub> </sub>#6495ED<sup> cornflowerblue </sup></span></tt>,mbxcolors getcolorcode '#6495ED',,,#blue
<tt><span bgcolor='#4682B4' fgcolor='#EEEEEE'><sub> </sub>#4682B4<sup> steelblue </sup></span></tt>,mbxcolors getcolorcode '#4682B4',,,#blue
<tt><span bgcolor='#4169E1' fgcolor='#EEEEEE'><sub> </sub>#4169E1<sup> royalblue </sup></span></tt>,mbxcolors getcolorcode '#4169E1',,,#blue
<tt><span bgcolor='#0000FF' fgcolor='#EEEEEE'><sub> </sub>#0000FF<sup> blue </sup></span></tt>,mbxcolors getcolorcode '#0000FF',,,#blue
<tt><span bgcolor='#0000CD' fgcolor='#EEEEEE'><sub> </sub>#0000CD<sup> mediumblue </sup></span></tt>,mbxcolors getcolorcode '#0000CD',,,#blue
<tt><span bgcolor='#00008B' fgcolor='#EEEEEE'><sub> </sub>#00008B<sup> darkblue </sup></span></tt>,mbxcolors getcolorcode '#00008B',,,#blue
<tt><span bgcolor='#000080' fgcolor='#EEEEEE'><sub> </sub>#000080<sup> navy </sup></span></tt>,mbxcolors getcolorcode '#000080',,,#blue
<tt><span bgcolor='#191970' fgcolor='#EEEEEE'><sub> </sub>#191970<sup> midnightblue </sup></span></tt>,mbxcolors getcolorcode '#191970',,,#blue
<tt><span bgcolor='#7B68EE' fgcolor='#EEEEEE'><sub> </sub>#7B68EE<sup> mediumslateblue </sup></span></tt>,mbxcolors getcolorcode '#7B68EE',,,#blue
<tt><span bgcolor='#6A5ACD' fgcolor='#EEEEEE'><sub> </sub>#6A5ACD<sup> slateblue </sup></span></tt>,mbxcolors getcolorcode '#6A5ACD',,,#blue
<tt><span bgcolor='#483D8B' fgcolor='#EEEEEE'><sub> </sub>#483D8B<sup> darkslateblue </sup></span></tt>,mbxcolors getcolorcode '#483D8B',,,#blue
^tag(purple)
^sep(Purple colors)
<tt><span bgcolor='#E6E6FA' fgcolor='#111111'><sub> </sub>#E6E6FA<sup> lavender </sup></span></tt>,mbxcolors getcolorcode '#E6E6FA';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#D8BFD8' fgcolor='#111111'><sub> </sub>#D8BFD8<sup> thistle </sup></span></tt>,mbxcolors getcolorcode '#D8BFD8';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#DDA0DD' fgcolor='#111111'><sub> </sub>#DDA0DD<sup> plum </sup></span></tt>,mbxcolors getcolorcode '#DDA0DD';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#EE82EE' fgcolor='#111111'><sub> </sub>#EE82EE<sup> violet </sup></span></tt>,mbxcolors getcolorcode '#EE82EE';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#DA70D6' fgcolor='#111111'><sub> </sub>#DA70D6<sup> orchid </sup></span></tt>,mbxcolors getcolorcode '#DA70D6';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#FF00FF' fgcolor='#EEEEEE'><sub> </sub>#FF00FF<sup> fuchsia </sup></span></tt>,mbxcolors getcolorcode '#FF00FF';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#FF00FF' fgcolor='#EEEEEE'><sub> </sub>#FF00FF<sup> magenta </sup></span></tt>,mbxcolors getcolorcode '#FF00FF';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#BA55D3' fgcolor='#EEEEEE'><sub> </sub>#BA55D3<sup> mediumorchid </sup></span></tt>,mbxcolors getcolorcode '#BA55D3';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#9370DB' fgcolor='#EEEEEE'><sub> </sub>#9370DB<sup> mediumpurple </sup></span></tt>,mbxcolors getcolorcode '#9370DB';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#8A2BE2' fgcolor='#EEEEEE'><sub> </sub>#8A2BE2<sup> blueviolet </sup></span></tt>,mbxcolors getcolorcode '#8A2BE2';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#9400D3' fgcolor='#EEEEEE'><sub> </sub>#9400D3<sup> darkviolet </sup></span></tt>,mbxcolors getcolorcode '#9400D3';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#9932CC' fgcolor='#EEEEEE'><sub> </sub>#9932CC<sup> darkorchid </sup></span></tt>,mbxcolors getcolorcode '#9932CC';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#8B008B' fgcolor='#EEEEEE'><sub> </sub>#8B008B<sup> darkmagenta </sup></span></tt>,mbxcolors getcolorcode '#8B008B';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#800080' fgcolor='#EEEEEE'><sub> </sub>#800080<sup> purple </sup></span></tt>,mbxcolors getcolorcode '#800080';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#4B0082' fgcolor='#EEEEEE'><sub> </sub>#4B0082<sup> indigo </sup></span></tt>,mbxcolors getcolorcode '#4B0082';mbxcolors setvar expose=html,,,#purple
<tt><span bgcolor='#E6E6FA' fgcolor='#111111'><sub> </sub>#E6E6FA<sup> lavender </sup></span></tt>,mbxcolors getcolorcode '#E6E6FA',,,#purple
<tt><span bgcolor='#D8BFD8' fgcolor='#111111'><sub> </sub>#D8BFD8<sup> thistle </sup></span></tt>,mbxcolors getcolorcode '#D8BFD8',,,#purple
<tt><span bgcolor='#DDA0DD' fgcolor='#111111'><sub> </sub>#DDA0DD<sup> plum </sup></span></tt>,mbxcolors getcolorcode '#DDA0DD',,,#purple
<tt><span bgcolor='#EE82EE' fgcolor='#111111'><sub> </sub>#EE82EE<sup> violet </sup></span></tt>,mbxcolors getcolorcode '#EE82EE',,,#purple
<tt><span bgcolor='#DA70D6' fgcolor='#111111'><sub> </sub>#DA70D6<sup> orchid </sup></span></tt>,mbxcolors getcolorcode '#DA70D6',,,#purple
<tt><span bgcolor='#FF00FF' fgcolor='#EEEEEE'><sub> </sub>#FF00FF<sup> fuchsia </sup></span></tt>,mbxcolors getcolorcode '#FF00FF',,,#purple
<tt><span bgcolor='#FF00FF' fgcolor='#EEEEEE'><sub> </sub>#FF00FF<sup> magenta </sup></span></tt>,mbxcolors getcolorcode '#FF00FF',,,#purple
<tt><span bgcolor='#BA55D3' fgcolor='#EEEEEE'><sub> </sub>#BA55D3<sup> mediumorchid </sup></span></tt>,mbxcolors getcolorcode '#BA55D3',,,#purple
<tt><span bgcolor='#9370DB' fgcolor='#EEEEEE'><sub> </sub>#9370DB<sup> mediumpurple </sup></span></tt>,mbxcolors getcolorcode '#9370DB',,,#purple
<tt><span bgcolor='#8A2BE2' fgcolor='#EEEEEE'><sub> </sub>#8A2BE2<sup> blueviolet </sup></span></tt>,mbxcolors getcolorcode '#8A2BE2',,,#purple
<tt><span bgcolor='#9400D3' fgcolor='#EEEEEE'><sub> </sub>#9400D3<sup> darkviolet </sup></span></tt>,mbxcolors getcolorcode '#9400D3',,,#purple
<tt><span bgcolor='#9932CC' fgcolor='#EEEEEE'><sub> </sub>#9932CC<sup> darkorchid </sup></span></tt>,mbxcolors getcolorcode '#9932CC',,,#purple
<tt><span bgcolor='#8B008B' fgcolor='#EEEEEE'><sub> </sub>#8B008B<sup> darkmagenta </sup></span></tt>,mbxcolors getcolorcode '#8B008B',,,#purple
<tt><span bgcolor='#800080' fgcolor='#EEEEEE'><sub> </sub>#800080<sup> purple </sup></span></tt>,mbxcolors getcolorcode '#800080',,,#purple
<tt><span bgcolor='#4B0082' fgcolor='#EEEEEE'><sub> </sub>#4B0082<sup> indigo </sup></span></tt>,mbxcolors getcolorcode '#4B0082',,,#purple
^tag(gray)
^sep(Gray colors)
<tt><span bgcolor='#DCDCDC' fgcolor='#111111'><sub> </sub>#DCDCDC<sup> gainsboro </sup></span></tt>,mbxcolors getcolorcode '#DCDCDC';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#D3D3D3' fgcolor='#111111'><sub> </sub>#D3D3D3<sup> lightgray </sup></span></tt>,mbxcolors getcolorcode '#D3D3D3';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#C0C0C0' fgcolor='#111111'><sub> </sub>#C0C0C0<sup> silver </sup></span></tt>,mbxcolors getcolorcode '#C0C0C0';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#A9A9A9' fgcolor='#111111'><sub> </sub>#A9A9A9<sup> darkgray </sup></span></tt>,mbxcolors getcolorcode '#A9A9A9';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#808080' fgcolor='#EEEEEE'><sub> </sub>#808080<sup> gray </sup></span></tt>,mbxcolors getcolorcode '#808080';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#696969' fgcolor='#EEEEEE'><sub> </sub>#696969<sup> dimgray </sup></span></tt>,mbxcolors getcolorcode '#696969';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#778899' fgcolor='#EEEEEE'><sub> </sub>#778899<sup> lightslategray </sup></span></tt>,mbxcolors getcolorcode '#778899';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#708090' fgcolor='#EEEEEE'><sub> </sub>#708090<sup> slategray </sup></span></tt>,mbxcolors getcolorcode '#708090';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#2F4F4F' fgcolor='#EEEEEE'><sub> </sub>#2F4F4F<sup> darkslategray </sup></span></tt>,mbxcolors getcolorcode '#2F4F4F';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#000000' fgcolor='#EEEEEE'><sub> </sub>#000000<sup> black </sup></span></tt>,mbxcolors getcolorcode '#000000';mbxcolors setvar expose=html,,,#gray
<tt><span bgcolor='#DCDCDC' fgcolor='#111111'><sub> </sub>#DCDCDC<sup> gainsboro </sup></span></tt>,mbxcolors getcolorcode '#DCDCDC',,,#gray
<tt><span bgcolor='#D3D3D3' fgcolor='#111111'><sub> </sub>#D3D3D3<sup> lightgray </sup></span></tt>,mbxcolors getcolorcode '#D3D3D3',,,#gray
<tt><span bgcolor='#C0C0C0' fgcolor='#111111'><sub> </sub>#C0C0C0<sup> silver </sup></span></tt>,mbxcolors getcolorcode '#C0C0C0',,,#gray
<tt><span bgcolor='#A9A9A9' fgcolor='#111111'><sub> </sub>#A9A9A9<sup> darkgray </sup></span></tt>,mbxcolors getcolorcode '#A9A9A9',,,#gray
<tt><span bgcolor='#808080' fgcolor='#EEEEEE'><sub> </sub>#808080<sup> gray </sup></span></tt>,mbxcolors getcolorcode '#808080',,,#gray
<tt><span bgcolor='#696969' fgcolor='#EEEEEE'><sub> </sub>#696969<sup> dimgray </sup></span></tt>,mbxcolors getcolorcode '#696969',,,#gray
<tt><span bgcolor='#778899' fgcolor='#EEEEEE'><sub> </sub>#778899<sup> lightslategray </sup></span></tt>,mbxcolors getcolorcode '#778899',,,#gray
<tt><span bgcolor='#708090' fgcolor='#EEEEEE'><sub> </sub>#708090<sup> slategray </sup></span></tt>,mbxcolors getcolorcode '#708090',,,#gray
<tt><span bgcolor='#2F4F4F' fgcolor='#EEEEEE'><sub> </sub>#2F4F4F<sup> darkslategray </sup></span></tt>,mbxcolors getcolorcode '#2F4F4F',,,#gray
<tt><span bgcolor='#000000' fgcolor='#EEEEEE'><sub> </sub>#000000<sup> black </sup></span></tt>,mbxcolors getcolorcode '#000000',,,#gray

1 ^tag(white)
2 ^sep(White colors)
3 <tt><span bgcolor='#FFFFFF' fgcolor='#111111'><sub> </sub>#FFFFFF<sup> white </sup></span></tt>,mbxcolors getcolorcode '#FFFFFF';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FFFFFF' fgcolor='#111111'><sub> </sub>#FFFFFF<sup> white </sup></span></tt>,mbxcolors getcolorcode '#FFFFFF',,,#white
4 <tt><span bgcolor='#FFFAFA' fgcolor='#111111'><sub> </sub>#FFFAFA<sup> snow </sup></span></tt>,mbxcolors getcolorcode '#FFFAFA';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FFFAFA' fgcolor='#111111'><sub> </sub>#FFFAFA<sup> snow </sup></span></tt>,mbxcolors getcolorcode '#FFFAFA',,,#white
5 <tt><span bgcolor='#F0FFF0' fgcolor='#111111'><sub> </sub>#F0FFF0<sup> honeydew </sup></span></tt>,mbxcolors getcolorcode '#F0FFF0';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#F0FFF0' fgcolor='#111111'><sub> </sub>#F0FFF0<sup> honeydew </sup></span></tt>,mbxcolors getcolorcode '#F0FFF0',,,#white
6 <tt><span bgcolor='#F5FFFA' fgcolor='#111111'><sub> </sub>#F5FFFA<sup> mintcream </sup></span></tt>,mbxcolors getcolorcode '#F5FFFA';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#F5FFFA' fgcolor='#111111'><sub> </sub>#F5FFFA<sup> mintcream </sup></span></tt>,mbxcolors getcolorcode '#F5FFFA',,,#white
7 <tt><span bgcolor='#F0FFFF' fgcolor='#111111'><sub> </sub>#F0FFFF<sup> azure </sup></span></tt>,mbxcolors getcolorcode '#F0FFFF';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#F0FFFF' fgcolor='#111111'><sub> </sub>#F0FFFF<sup> azure </sup></span></tt>,mbxcolors getcolorcode '#F0FFFF',,,#white
8 <tt><span bgcolor='#F0F8FF' fgcolor='#111111'><sub> </sub>#F0F8FF<sup> aliceblue </sup></span></tt>,mbxcolors getcolorcode '#F0F8FF';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#F0F8FF' fgcolor='#111111'><sub> </sub>#F0F8FF<sup> aliceblue </sup></span></tt>,mbxcolors getcolorcode '#F0F8FF',,,#white
9 <tt><span bgcolor='#F8F8FF' fgcolor='#111111'><sub> </sub>#F8F8FF<sup> ghostwhite </sup></span></tt>,mbxcolors getcolorcode '#F8F8FF';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#F8F8FF' fgcolor='#111111'><sub> </sub>#F8F8FF<sup> ghostwhite </sup></span></tt>,mbxcolors getcolorcode '#F8F8FF',,,#white
10 <tt><span bgcolor='#F5F5F5' fgcolor='#111111'><sub> </sub>#F5F5F5<sup> whitesmoke </sup></span></tt>,mbxcolors getcolorcode '#F5F5F5';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#F5F5F5' fgcolor='#111111'><sub> </sub>#F5F5F5<sup> whitesmoke </sup></span></tt>,mbxcolors getcolorcode '#F5F5F5',,,#white
11 <tt><span bgcolor='#FFF5EE' fgcolor='#111111'><sub> </sub>#FFF5EE<sup> seashell </sup></span></tt>,mbxcolors getcolorcode '#FFF5EE';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FFF5EE' fgcolor='#111111'><sub> </sub>#FFF5EE<sup> seashell </sup></span></tt>,mbxcolors getcolorcode '#FFF5EE',,,#white
12 <tt><span bgcolor='#F5F5DC' fgcolor='#111111'><sub> </sub>#F5F5DC<sup> beige </sup></span></tt>,mbxcolors getcolorcode '#F5F5DC';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#F5F5DC' fgcolor='#111111'><sub> </sub>#F5F5DC<sup> beige </sup></span></tt>,mbxcolors getcolorcode '#F5F5DC',,,#white
13 <tt><span bgcolor='#FDF5E6' fgcolor='#111111'><sub> </sub>#FDF5E6<sup> oldlace </sup></span></tt>,mbxcolors getcolorcode '#FDF5E6';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FDF5E6' fgcolor='#111111'><sub> </sub>#FDF5E6<sup> oldlace </sup></span></tt>,mbxcolors getcolorcode '#FDF5E6',,,#white
14 <tt><span bgcolor='#FFFAF0' fgcolor='#111111'><sub> </sub>#FFFAF0<sup> floralwhite </sup></span></tt>,mbxcolors getcolorcode '#FFFAF0';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FFFAF0' fgcolor='#111111'><sub> </sub>#FFFAF0<sup> floralwhite </sup></span></tt>,mbxcolors getcolorcode '#FFFAF0',,,#white
15 <tt><span bgcolor='#FFFFF0' fgcolor='#111111'><sub> </sub>#FFFFF0<sup> ivory </sup></span></tt>,mbxcolors getcolorcode '#FFFFF0';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FFFFF0' fgcolor='#111111'><sub> </sub>#FFFFF0<sup> ivory </sup></span></tt>,mbxcolors getcolorcode '#FFFFF0',,,#white
16 <tt><span bgcolor='#FAEBD7' fgcolor='#111111'><sub> </sub>#FAEBD7<sup> antiquewhite </sup></span></tt>,mbxcolors getcolorcode '#FAEBD7';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FAEBD7' fgcolor='#111111'><sub> </sub>#FAEBD7<sup> antiquewhite </sup></span></tt>,mbxcolors getcolorcode '#FAEBD7',,,#white
17 <tt><span bgcolor='#FAF0E6' fgcolor='#111111'><sub> </sub>#FAF0E6<sup> linen </sup></span></tt>,mbxcolors getcolorcode '#FAF0E6';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FAF0E6' fgcolor='#111111'><sub> </sub>#FAF0E6<sup> linen </sup></span></tt>,mbxcolors getcolorcode '#FAF0E6',,,#white
18 <tt><span bgcolor='#FFF0F5' fgcolor='#111111'><sub> </sub>#FFF0F5<sup> lavenderblush </sup></span></tt>,mbxcolors getcolorcode '#FFF0F5';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FFF0F5' fgcolor='#111111'><sub> </sub>#FFF0F5<sup> lavenderblush </sup></span></tt>,mbxcolors getcolorcode '#FFF0F5',,,#white
19 <tt><span bgcolor='#FFE4E1' fgcolor='#111111'><sub> </sub>#FFE4E1<sup> mistyrose </sup></span></tt>,mbxcolors getcolorcode '#FFE4E1';mbxcolors setvar expose=html,,,#white <tt><span bgcolor='#FFE4E1' fgcolor='#111111'><sub> </sub>#FFE4E1<sup> mistyrose </sup></span></tt>,mbxcolors getcolorcode '#FFE4E1',,,#white
20 ^tag(yellow)
21 ^sep(Yellow colors)
22 <tt><span bgcolor='#FFFFE0' fgcolor='#111111'><sub> </sub>#FFFFE0<sup> lightyellow </sup></span></tt>,mbxcolors getcolorcode '#FFFFE0';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#FFFFE0' fgcolor='#111111'><sub> </sub>#FFFFE0<sup> lightyellow </sup></span></tt>,mbxcolors getcolorcode '#FFFFE0',,,#yellow
23 <tt><span bgcolor='#FFFACD' fgcolor='#111111'><sub> </sub>#FFFACD<sup> lemonchiffon </sup></span></tt>,mbxcolors getcolorcode '#FFFACD';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#FFFACD' fgcolor='#111111'><sub> </sub>#FFFACD<sup> lemonchiffon </sup></span></tt>,mbxcolors getcolorcode '#FFFACD',,,#yellow
24 <tt><span bgcolor='#FAFAD2' fgcolor='#111111'><sub> </sub>#FAFAD2<sup> lightgoldenrodyellow </sup></span></tt>,mbxcolors getcolorcode '#FAFAD2';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#FAFAD2' fgcolor='#111111'><sub> </sub>#FAFAD2<sup> lightgoldenrodyellow </sup></span></tt>,mbxcolors getcolorcode '#FAFAD2',,,#yellow
25 <tt><span bgcolor='#FFEFD5' fgcolor='#111111'><sub> </sub>#FFEFD5<sup> papayawhip </sup></span></tt>,mbxcolors getcolorcode '#FFEFD5';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#FFEFD5' fgcolor='#111111'><sub> </sub>#FFEFD5<sup> papayawhip </sup></span></tt>,mbxcolors getcolorcode '#FFEFD5',,,#yellow
26 <tt><span bgcolor='#FFE4B5' fgcolor='#111111'><sub> </sub>#FFE4B5<sup> moccasin </sup></span></tt>,mbxcolors getcolorcode '#FFE4B5';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#FFE4B5' fgcolor='#111111'><sub> </sub>#FFE4B5<sup> moccasin </sup></span></tt>,mbxcolors getcolorcode '#FFE4B5',,,#yellow
27 <tt><span bgcolor='#FFDAB9' fgcolor='#111111'><sub> </sub>#FFDAB9<sup> peachpuff </sup></span></tt>,mbxcolors getcolorcode '#FFDAB9';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#FFDAB9' fgcolor='#111111'><sub> </sub>#FFDAB9<sup> peachpuff </sup></span></tt>,mbxcolors getcolorcode '#FFDAB9',,,#yellow
28 <tt><span bgcolor='#EEE8AA' fgcolor='#111111'><sub> </sub>#EEE8AA<sup> palegoldenrod </sup></span></tt>,mbxcolors getcolorcode '#EEE8AA';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#EEE8AA' fgcolor='#111111'><sub> </sub>#EEE8AA<sup> palegoldenrod </sup></span></tt>,mbxcolors getcolorcode '#EEE8AA',,,#yellow
29 <tt><span bgcolor='#F0E68C' fgcolor='#111111'><sub> </sub>#F0E68C<sup> khaki </sup></span></tt>,mbxcolors getcolorcode '#F0E68C';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#F0E68C' fgcolor='#111111'><sub> </sub>#F0E68C<sup> khaki </sup></span></tt>,mbxcolors getcolorcode '#F0E68C',,,#yellow
30 <tt><span bgcolor='#BDB76B' fgcolor='#111111'><sub> </sub>#BDB76B<sup> darkkhaki </sup></span></tt>,mbxcolors getcolorcode '#BDB76B';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#BDB76B' fgcolor='#111111'><sub> </sub>#BDB76B<sup> darkkhaki </sup></span></tt>,mbxcolors getcolorcode '#BDB76B',,,#yellow
31 <tt><span bgcolor='#FFFF00' fgcolor='#111111'><sub> </sub>#FFFF00<sup> yellow </sup></span></tt>,mbxcolors getcolorcode '#FFFF00';mbxcolors setvar expose=html,,,#yellow <tt><span bgcolor='#FFFF00' fgcolor='#111111'><sub> </sub>#FFFF00<sup> yellow </sup></span></tt>,mbxcolors getcolorcode '#FFFF00',,,#yellow
32 ^tag(orange)
33 ^sep(Orange colors)
34 <tt><span bgcolor='#FF7F50' fgcolor='#111111'><sub> </sub>#FF7F50<sup> coral </sup></span></tt>,mbxcolors getcolorcode '#FF7F50';mbxcolors setvar expose=html,,,#orange <tt><span bgcolor='#FF7F50' fgcolor='#111111'><sub> </sub>#FF7F50<sup> coral </sup></span></tt>,mbxcolors getcolorcode '#FF7F50',,,#orange
35 <tt><span bgcolor='#FF6347' fgcolor='#EEEEEE'><sub> </sub>#FF6347<sup> tomato </sup></span></tt>,mbxcolors getcolorcode '#FF6347';mbxcolors setvar expose=html,,,#orange <tt><span bgcolor='#FF6347' fgcolor='#EEEEEE'><sub> </sub>#FF6347<sup> tomato </sup></span></tt>,mbxcolors getcolorcode '#FF6347',,,#orange
36 <tt><span bgcolor='#FF4500' fgcolor='#EEEEEE'><sub> </sub>#FF4500<sup> orangered </sup></span></tt>,mbxcolors getcolorcode '#FF4500';mbxcolors setvar expose=html,,,#orange <tt><span bgcolor='#FF4500' fgcolor='#EEEEEE'><sub> </sub>#FF4500<sup> orangered </sup></span></tt>,mbxcolors getcolorcode '#FF4500',,,#orange
37 <tt><span bgcolor='#FFD700' fgcolor='#111111'><sub> </sub>#FFD700<sup> gold </sup></span></tt>,mbxcolors getcolorcode '#FFD700';mbxcolors setvar expose=html,,,#orange <tt><span bgcolor='#FFD700' fgcolor='#111111'><sub> </sub>#FFD700<sup> gold </sup></span></tt>,mbxcolors getcolorcode '#FFD700',,,#orange
38 <tt><span bgcolor='#FFA500' fgcolor='#111111'><sub> </sub>#FFA500<sup> orange </sup></span></tt>,mbxcolors getcolorcode '#FFA500';mbxcolors setvar expose=html,,,#orange <tt><span bgcolor='#FFA500' fgcolor='#111111'><sub> </sub>#FFA500<sup> orange </sup></span></tt>,mbxcolors getcolorcode '#FFA500',,,#orange
39 <tt><span bgcolor='#FF8C00' fgcolor='#111111'><sub> </sub>#FF8C00<sup> darkorange </sup></span></tt>,mbxcolors getcolorcode '#FF8C00';mbxcolors setvar expose=html,,,#orange <tt><span bgcolor='#FF8C00' fgcolor='#111111'><sub> </sub>#FF8C00<sup> darkorange </sup></span></tt>,mbxcolors getcolorcode '#FF8C00',,,#orange
40 ^tag(pink)
41 ^sep(Pink colors)
42 <tt><span bgcolor='#FFC0CB' fgcolor='#111111'><sub> </sub>#FFC0CB<sup> pink </sup></span></tt>,mbxcolors getcolorcode '#FFC0CB';mbxcolors setvar expose=html,,,#pink <tt><span bgcolor='#FFC0CB' fgcolor='#111111'><sub> </sub>#FFC0CB<sup> pink </sup></span></tt>,mbxcolors getcolorcode '#FFC0CB',,,#pink
43 <tt><span bgcolor='#FFB6C1' fgcolor='#111111'><sub> </sub>#FFB6C1<sup> lightpink </sup></span></tt>,mbxcolors getcolorcode '#FFB6C1';mbxcolors setvar expose=html,,,#pink <tt><span bgcolor='#FFB6C1' fgcolor='#111111'><sub> </sub>#FFB6C1<sup> lightpink </sup></span></tt>,mbxcolors getcolorcode '#FFB6C1',,,#pink
44 <tt><span bgcolor='#FF69B4' fgcolor='#111111'><sub> </sub>#FF69B4<sup> hotpink </sup></span></tt>,mbxcolors getcolorcode '#FF69B4';mbxcolors setvar expose=html,,,#pink <tt><span bgcolor='#FF69B4' fgcolor='#111111'><sub> </sub>#FF69B4<sup> hotpink </sup></span></tt>,mbxcolors getcolorcode '#FF69B4',,,#pink
45 <tt><span bgcolor='#FF1493' fgcolor='#EEEEEE'><sub> </sub>#FF1493<sup> deeppink </sup></span></tt>,mbxcolors getcolorcode '#FF1493';mbxcolors setvar expose=html,,,#pink <tt><span bgcolor='#FF1493' fgcolor='#EEEEEE'><sub> </sub>#FF1493<sup> deeppink </sup></span></tt>,mbxcolors getcolorcode '#FF1493',,,#pink
46 <tt><span bgcolor='#DB7093' fgcolor='#EEEEEE'><sub> </sub>#DB7093<sup> palevioletred </sup></span></tt>,mbxcolors getcolorcode '#DB7093';mbxcolors setvar expose=html,,,#pink <tt><span bgcolor='#DB7093' fgcolor='#EEEEEE'><sub> </sub>#DB7093<sup> palevioletred </sup></span></tt>,mbxcolors getcolorcode '#DB7093',,,#pink
47 <tt><span bgcolor='#C71585' fgcolor='#EEEEEE'><sub> </sub>#C71585<sup> mediumvioletred </sup></span></tt>,mbxcolors getcolorcode '#C71585';mbxcolors setvar expose=html,,,#pink <tt><span bgcolor='#C71585' fgcolor='#EEEEEE'><sub> </sub>#C71585<sup> mediumvioletred </sup></span></tt>,mbxcolors getcolorcode '#C71585',,,#pink
48 ^tag(red)
49 ^sep(Red colors)
50 <tt><span bgcolor='#FFA07A' fgcolor='#111111'><sub> </sub>#FFA07A<sup> lightsalmon </sup></span></tt>,mbxcolors getcolorcode '#FFA07A';mbxcolors setvar expose=html,,,#red <tt><span bgcolor='#FFA07A' fgcolor='#111111'><sub> </sub>#FFA07A<sup> lightsalmon </sup></span></tt>,mbxcolors getcolorcode '#FFA07A',,,#red
51 <tt><span bgcolor='#FA8072' fgcolor='#111111'><sub> </sub>#FA8072<sup> salmon </sup></span></tt>,mbxcolors getcolorcode '#FA8072';mbxcolors setvar expose=html,,,#red <tt><span bgcolor='#FA8072' fgcolor='#111111'><sub> </sub>#FA8072<sup> salmon </sup></span></tt>,mbxcolors getcolorcode '#FA8072',,,#red
52 <tt><span bgcolor='#E9967A' fgcolor='#111111'><sub> </sub>#E9967A<sup> darksalmon </sup></span></tt>,mbxcolors getcolorcode '#E9967A';mbxcolors setvar expose=html,,,#red <tt><span bgcolor='#E9967A' fgcolor='#111111'><sub> </sub>#E9967A<sup> darksalmon </sup></span></tt>,mbxcolors getcolorcode '#E9967A',,,#red
53 <tt><span bgcolor='#F08080' fgcolor='#111111'><sub> </sub>#F08080<sup> lightcoral </sup></span></tt>,mbxcolors getcolorcode '#F08080';mbxcolors setvar expose=html,,,#red <tt><span bgcolor='#F08080' fgcolor='#111111'><sub> </sub>#F08080<sup> lightcoral </sup></span></tt>,mbxcolors getcolorcode '#F08080',,,#red
54 <tt><span bgcolor='#CD5C5C' fgcolor='#EEEEEE'><sub> </sub>#CD5C5C<sup> indianred </sup></span></tt>,mbxcolors getcolorcode '#CD5C5C';mbxcolors setvar expose=html,,,#red <tt><span bgcolor='#CD5C5C' fgcolor='#EEEEEE'><sub> </sub>#CD5C5C<sup> indianred </sup></span></tt>,mbxcolors getcolorcode '#CD5C5C',,,#red
55 <tt><span bgcolor='#DC143C' fgcolor='#EEEEEE'><sub> </sub>#DC143C<sup> crimson </sup></span></tt>,mbxcolors getcolorcode '#DC143C';mbxcolors setvar expose=html,,,#red <tt><span bgcolor='#DC143C' fgcolor='#EEEEEE'><sub> </sub>#DC143C<sup> crimson </sup></span></tt>,mbxcolors getcolorcode '#DC143C',,,#red
56 <tt><span bgcolor='#B22222' fgcolor='#EEEEEE'><sub> </sub>#B22222<sup> firebrick </sup></span></tt>,mbxcolors getcolorcode '#B22222';mbxcolors setvar expose=html,,,#red <tt><span bgcolor='#B22222' fgcolor='#EEEEEE'><sub> </sub>#B22222<sup> firebrick </sup></span></tt>,mbxcolors getcolorcode '#B22222',,,#red
57 <tt><span bgcolor='#FF0000' fgcolor='#EEEEEE'><sub> </sub>#FF0000<sup> red </sup></span></tt>,mbxcolors getcolorcode '#FF0000';mbxcolors setvar expose=html,,,#red <tt><span bgcolor='#FF0000' fgcolor='#EEEEEE'><sub> </sub>#FF0000<sup> red </sup></span></tt>,mbxcolors getcolorcode '#FF0000',,,#red
58 <tt><span bgcolor='#8B0000' fgcolor='#EEEEEE'><sub> </sub>#8B0000<sup> darkreds </sup></span></tt>,mbxcolors getcolorcode '#8B0000';mbxcolors setvar expose=html,,,#red <tt><span bgcolor='#8B0000' fgcolor='#EEEEEE'><sub> </sub>#8B0000<sup> darkreds </sup></span></tt>,mbxcolors getcolorcode '#8B0000',,,#red
59 ^tag(brown)
60 ^sep(Brown colors)
61 <tt><span bgcolor='#FFF8DC' fgcolor='#111111'><sub> </sub>#FFF8DC<sup> cornsilk </sup></span></tt>,mbxcolors getcolorcode '#FFF8DC';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#FFF8DC' fgcolor='#111111'><sub> </sub>#FFF8DC<sup> cornsilk </sup></span></tt>,mbxcolors getcolorcode '#FFF8DC',,,#brown
62 <tt><span bgcolor='#FFEBCD' fgcolor='#111111'><sub> </sub>#FFEBCD<sup> blanchedalmond </sup></span></tt>,mbxcolors getcolorcode '#FFEBCD';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#FFEBCD' fgcolor='#111111'><sub> </sub>#FFEBCD<sup> blanchedalmond </sup></span></tt>,mbxcolors getcolorcode '#FFEBCD',,,#brown
63 <tt><span bgcolor='#FFE4C4' fgcolor='#111111'><sub> </sub>#FFE4C4<sup> bisque </sup></span></tt>,mbxcolors getcolorcode '#FFE4C4';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#FFE4C4' fgcolor='#111111'><sub> </sub>#FFE4C4<sup> bisque </sup></span></tt>,mbxcolors getcolorcode '#FFE4C4',,,#brown
64 <tt><span bgcolor='#FFDEAD' fgcolor='#111111'><sub> </sub>#FFDEAD<sup> navajowhite </sup></span></tt>,mbxcolors getcolorcode '#FFDEAD';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#FFDEAD' fgcolor='#111111'><sub> </sub>#FFDEAD<sup> navajowhite </sup></span></tt>,mbxcolors getcolorcode '#FFDEAD',,,#brown
65 <tt><span bgcolor='#F5DEB3' fgcolor='#111111'><sub> </sub>#F5DEB3<sup> wheat </sup></span></tt>,mbxcolors getcolorcode '#F5DEB3';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#F5DEB3' fgcolor='#111111'><sub> </sub>#F5DEB3<sup> wheat </sup></span></tt>,mbxcolors getcolorcode '#F5DEB3',,,#brown
66 <tt><span bgcolor='#DEB887' fgcolor='#111111'><sub> </sub>#DEB887<sup> burlywood </sup></span></tt>,mbxcolors getcolorcode '#DEB887';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#DEB887' fgcolor='#111111'><sub> </sub>#DEB887<sup> burlywood </sup></span></tt>,mbxcolors getcolorcode '#DEB887',,,#brown
67 <tt><span bgcolor='#D2B48C' fgcolor='#111111'><sub> </sub>#D2B48C<sup> tan </sup></span></tt>,mbxcolors getcolorcode '#D2B48C';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#D2B48C' fgcolor='#111111'><sub> </sub>#D2B48C<sup> tan </sup></span></tt>,mbxcolors getcolorcode '#D2B48C',,,#brown
68 <tt><span bgcolor='#BC8F8F' fgcolor='#111111'><sub> </sub>#BC8F8F<sup> rosybrown </sup></span></tt>,mbxcolors getcolorcode '#BC8F8F';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#BC8F8F' fgcolor='#111111'><sub> </sub>#BC8F8F<sup> rosybrown </sup></span></tt>,mbxcolors getcolorcode '#BC8F8F',,,#brown
69 <tt><span bgcolor='#F4A460' fgcolor='#111111'><sub> </sub>#F4A460<sup> sandybrown </sup></span></tt>,mbxcolors getcolorcode '#F4A460';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#F4A460' fgcolor='#111111'><sub> </sub>#F4A460<sup> sandybrown </sup></span></tt>,mbxcolors getcolorcode '#F4A460',,,#brown
70 <tt><span bgcolor='#DAA520' fgcolor='#111111'><sub> </sub>#DAA520<sup> goldenrod </sup></span></tt>,mbxcolors getcolorcode '#DAA520';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#DAA520' fgcolor='#111111'><sub> </sub>#DAA520<sup> goldenrod </sup></span></tt>,mbxcolors getcolorcode '#DAA520',,,#brown
71 <tt><span bgcolor='#CD853F' fgcolor='#EEEEEE'><sub> </sub>#CD853F<sup> peru </sup></span></tt>,mbxcolors getcolorcode '#CD853F';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#CD853F' fgcolor='#EEEEEE'><sub> </sub>#CD853F<sup> peru </sup></span></tt>,mbxcolors getcolorcode '#CD853F',,,#brown
72 <tt><span bgcolor='#D2691E' fgcolor='#EEEEEE'><sub> </sub>#D2691E<sup> chocolate </sup></span></tt>,mbxcolors getcolorcode '#D2691E';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#D2691E' fgcolor='#EEEEEE'><sub> </sub>#D2691E<sup> chocolate </sup></span></tt>,mbxcolors getcolorcode '#D2691E',,,#brown
73 <tt><span bgcolor='#8B4513' fgcolor='#EEEEEE'><sub> </sub>#8B4513<sup> saddlebrown </sup></span></tt>,mbxcolors getcolorcode '#8B4513';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#8B4513' fgcolor='#EEEEEE'><sub> </sub>#8B4513<sup> saddlebrown </sup></span></tt>,mbxcolors getcolorcode '#8B4513',,,#brown
74 <tt><span bgcolor='#A0522D' fgcolor='#EEEEEE'><sub> </sub>#A0522D<sup> sienna </sup></span></tt>,mbxcolors getcolorcode '#A0522D';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#A0522D' fgcolor='#EEEEEE'><sub> </sub>#A0522D<sup> sienna </sup></span></tt>,mbxcolors getcolorcode '#A0522D',,,#brown
75 <tt><span bgcolor='#A52A2A' fgcolor='#EEEEEE'><sub> </sub>#A52A2A<sup> brown </sup></span></tt>,mbxcolors getcolorcode '#A52A2A';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#A52A2A' fgcolor='#EEEEEE'><sub> </sub>#A52A2A<sup> brown </sup></span></tt>,mbxcolors getcolorcode '#A52A2A',,,#brown
76 <tt><span bgcolor='#800000' fgcolor='#EEEEEE'><sub> </sub>#800000<sup> maroon </sup></span></tt>,mbxcolors getcolorcode '#800000';mbxcolors setvar expose=html,,,#brown <tt><span bgcolor='#800000' fgcolor='#EEEEEE'><sub> </sub>#800000<sup> maroon </sup></span></tt>,mbxcolors getcolorcode '#800000',,,#brown
77 ^tag(green)
78 ^sep(Green colors)
79 <tt><span bgcolor='#7CFC00' fgcolor='#111111'><sub> </sub>#7CFC00<sup> lawngreen </sup></span></tt>,mbxcolors getcolorcode '#7CFC00';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#7CFC00' fgcolor='#111111'><sub> </sub>#7CFC00<sup> lawngreen </sup></span></tt>,mbxcolors getcolorcode '#7CFC00',,,#green
80 <tt><span bgcolor='#7FFF00' fgcolor='#111111'><sub> </sub>#7FFF00<sup> chartreuse </sup></span></tt>,mbxcolors getcolorcode '#7FFF00';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#7FFF00' fgcolor='#111111'><sub> </sub>#7FFF00<sup> chartreuse </sup></span></tt>,mbxcolors getcolorcode '#7FFF00',,,#green
81 <tt><span bgcolor='#32CD32' fgcolor='#EEEEEE'><sub> </sub>#32CD32<sup> limegreen </sup></span></tt>,mbxcolors getcolorcode '#32CD32';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#32CD32' fgcolor='#EEEEEE'><sub> </sub>#32CD32<sup> limegreen </sup></span></tt>,mbxcolors getcolorcode '#32CD32',,,#green
82 <tt><span bgcolor='#00FF00' fgcolor='#111111'><sub> </sub>#00FF00<sup> lime </sup></span></tt>,mbxcolors getcolorcode '#00FF00';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#00FF00' fgcolor='#111111'><sub> </sub>#00FF00<sup> lime </sup></span></tt>,mbxcolors getcolorcode '#00FF00',,,#green
83 <tt><span bgcolor='#228B22' fgcolor='#EEEEEE'><sub> </sub>#228B22<sup> forestgreen </sup></span></tt>,mbxcolors getcolorcode '#228B22';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#228B22' fgcolor='#EEEEEE'><sub> </sub>#228B22<sup> forestgreen </sup></span></tt>,mbxcolors getcolorcode '#228B22',,,#green
84 <tt><span bgcolor='#008000' fgcolor='#EEEEEE'><sub> </sub>#008000<sup> green </sup></span></tt>,mbxcolors getcolorcode '#008000';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#008000' fgcolor='#EEEEEE'><sub> </sub>#008000<sup> green </sup></span></tt>,mbxcolors getcolorcode '#008000',,,#green
85 <tt><span bgcolor='#006400' fgcolor='#EEEEEE'><sub> </sub>#006400<sup> darkgreen </sup></span></tt>,mbxcolors getcolorcode '#006400';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#006400' fgcolor='#EEEEEE'><sub> </sub>#006400<sup> darkgreen </sup></span></tt>,mbxcolors getcolorcode '#006400',,,#green
86 <tt><span bgcolor='#ADFF2F' fgcolor='#111111'><sub> </sub>#ADFF2F<sup> greenyellow </sup></span></tt>,mbxcolors getcolorcode '#ADFF2F';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#ADFF2F' fgcolor='#111111'><sub> </sub>#ADFF2F<sup> greenyellow </sup></span></tt>,mbxcolors getcolorcode '#ADFF2F',,,#green
87 <tt><span bgcolor='#9ACD32' fgcolor='#111111'><sub> </sub>#9ACD32<sup> yellowgreen </sup></span></tt>,mbxcolors getcolorcode '#9ACD32';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#9ACD32' fgcolor='#111111'><sub> </sub>#9ACD32<sup> yellowgreen </sup></span></tt>,mbxcolors getcolorcode '#9ACD32',,,#green
88 <tt><span bgcolor='#00FF7F' fgcolor='#111111'><sub> </sub>#00FF7F<sup> springgreen </sup></span></tt>,mbxcolors getcolorcode '#00FF7F';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#00FF7F' fgcolor='#111111'><sub> </sub>#00FF7F<sup> springgreen </sup></span></tt>,mbxcolors getcolorcode '#00FF7F',,,#green
89 <tt><span bgcolor='#00FA9A' fgcolor='#111111'><sub> </sub>#00FA9A<sup> mediumspringgreen </sup></span></tt>,mbxcolors getcolorcode '#00FA9A';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#00FA9A' fgcolor='#111111'><sub> </sub>#00FA9A<sup> mediumspringgreen </sup></span></tt>,mbxcolors getcolorcode '#00FA9A',,,#green
90 <tt><span bgcolor='#90EE90' fgcolor='#111111'><sub> </sub>#90EE90<sup> lightgreen </sup></span></tt>,mbxcolors getcolorcode '#90EE90';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#90EE90' fgcolor='#111111'><sub> </sub>#90EE90<sup> lightgreen </sup></span></tt>,mbxcolors getcolorcode '#90EE90',,,#green
91 <tt><span bgcolor='#98FB98' fgcolor='#111111'><sub> </sub>#98FB98<sup> palegreen </sup></span></tt>,mbxcolors getcolorcode '#98FB98';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#98FB98' fgcolor='#111111'><sub> </sub>#98FB98<sup> palegreen </sup></span></tt>,mbxcolors getcolorcode '#98FB98',,,#green
92 <tt><span bgcolor='#8FBC8F' fgcolor='#111111'><sub> </sub>#8FBC8F<sup> darkseagreen </sup></span></tt>,mbxcolors getcolorcode '#8FBC8F';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#8FBC8F' fgcolor='#111111'><sub> </sub>#8FBC8F<sup> darkseagreen </sup></span></tt>,mbxcolors getcolorcode '#8FBC8F',,,#green
93 <tt><span bgcolor='#3CB371' fgcolor='#EEEEEE'><sub> </sub>#3CB371<sup> mediumseagreen </sup></span></tt>,mbxcolors getcolorcode '#3CB371';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#3CB371' fgcolor='#EEEEEE'><sub> </sub>#3CB371<sup> mediumseagreen </sup></span></tt>,mbxcolors getcolorcode '#3CB371',,,#green
94 <tt><span bgcolor='#2E8B57' fgcolor='#EEEEEE'><sub> </sub>#2E8B57<sup> seagreen </sup></span></tt>,mbxcolors getcolorcode '#2E8B57';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#2E8B57' fgcolor='#EEEEEE'><sub> </sub>#2E8B57<sup> seagreen </sup></span></tt>,mbxcolors getcolorcode '#2E8B57',,,#green
95 <tt><span bgcolor='#808000' fgcolor='#EEEEEE'><sub> </sub>#808000<sup> olive </sup></span></tt>,mbxcolors getcolorcode '#808000';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#808000' fgcolor='#EEEEEE'><sub> </sub>#808000<sup> olive </sup></span></tt>,mbxcolors getcolorcode '#808000',,,#green
96 <tt><span bgcolor='#556B2F' fgcolor='#EEEEEE'><sub> </sub>#556B2F<sup> darkolivegreen </sup></span></tt>,mbxcolors getcolorcode '#556B2F';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#556B2F' fgcolor='#EEEEEE'><sub> </sub>#556B2F<sup> darkolivegreen </sup></span></tt>,mbxcolors getcolorcode '#556B2F',,,#green
97 <tt><span bgcolor='#6B8E23' fgcolor='#EEEEEE'><sub> </sub>#6B8E23<sup> olivedrab </sup></span></tt>,mbxcolors getcolorcode '#6B8E23';mbxcolors setvar expose=html,,,#green <tt><span bgcolor='#6B8E23' fgcolor='#EEEEEE'><sub> </sub>#6B8E23<sup> olivedrab </sup></span></tt>,mbxcolors getcolorcode '#6B8E23',,,#green
98 ^tag(cyan)
99 ^sep(Cyan colors)
100 <tt><span bgcolor='#E0FFFF' fgcolor='#111111'><sub> </sub>#E0FFFF<sup> lightcyan </sup></span></tt>,mbxcolors getcolorcode '#E0FFFF';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#E0FFFF' fgcolor='#111111'><sub> </sub>#E0FFFF<sup> lightcyan </sup></span></tt>,mbxcolors getcolorcode '#E0FFFF',,,#cyan
101 <tt><span bgcolor='#00FFFF' fgcolor='#111111'><sub> </sub>#00FFFF<sup> cyan </sup></span></tt>,mbxcolors getcolorcode '#00FFFF';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#00FFFF' fgcolor='#111111'><sub> </sub>#00FFFF<sup> cyan </sup></span></tt>,mbxcolors getcolorcode '#00FFFF',,,#cyan
102 <tt><span bgcolor='#00FFFF' fgcolor='#111111'><sub> </sub>#00FFFF<sup> aqua </sup></span></tt>,mbxcolors getcolorcode '#00FFFF';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#00FFFF' fgcolor='#111111'><sub> </sub>#00FFFF<sup> aqua </sup></span></tt>,mbxcolors getcolorcode '#00FFFF',,,#cyan
103 <tt><span bgcolor='#7FFFD4' fgcolor='#111111'><sub> </sub>#7FFFD4<sup> aquamarine </sup></span></tt>,mbxcolors getcolorcode '#7FFFD4';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#7FFFD4' fgcolor='#111111'><sub> </sub>#7FFFD4<sup> aquamarine </sup></span></tt>,mbxcolors getcolorcode '#7FFFD4',,,#cyan
104 <tt><span bgcolor='#66CDAA' fgcolor='#111111'><sub> </sub>#66CDAA<sup> mediumaquamarine </sup></span></tt>,mbxcolors getcolorcode '#66CDAA';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#66CDAA' fgcolor='#111111'><sub> </sub>#66CDAA<sup> mediumaquamarine </sup></span></tt>,mbxcolors getcolorcode '#66CDAA',,,#cyan
105 <tt><span bgcolor='#AFEEEE' fgcolor='#111111'><sub> </sub>#AFEEEE<sup> paleturquoise </sup></span></tt>,mbxcolors getcolorcode '#AFEEEE';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#AFEEEE' fgcolor='#111111'><sub> </sub>#AFEEEE<sup> paleturquoise </sup></span></tt>,mbxcolors getcolorcode '#AFEEEE',,,#cyan
106 <tt><span bgcolor='#40E0D0' fgcolor='#111111'><sub> </sub>#40E0D0<sup> turquoise </sup></span></tt>,mbxcolors getcolorcode '#40E0D0';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#40E0D0' fgcolor='#111111'><sub> </sub>#40E0D0<sup> turquoise </sup></span></tt>,mbxcolors getcolorcode '#40E0D0',,,#cyan
107 <tt><span bgcolor='#48D1CC' fgcolor='#111111'><sub> </sub>#48D1CC<sup> mediumturquoise </sup></span></tt>,mbxcolors getcolorcode '#48D1CC';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#48D1CC' fgcolor='#111111'><sub> </sub>#48D1CC<sup> mediumturquoise </sup></span></tt>,mbxcolors getcolorcode '#48D1CC',,,#cyan
108 <tt><span bgcolor='#00CED1' fgcolor='#EEEEEE'><sub> </sub>#00CED1<sup> darkturquoise </sup></span></tt>,mbxcolors getcolorcode '#00CED1';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#00CED1' fgcolor='#EEEEEE'><sub> </sub>#00CED1<sup> darkturquoise </sup></span></tt>,mbxcolors getcolorcode '#00CED1',,,#cyan
109 <tt><span bgcolor='#20B2AA' fgcolor='#EEEEEE'><sub> </sub>#20B2AA<sup> lightseagreen </sup></span></tt>,mbxcolors getcolorcode '#20B2AA';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#20B2AA' fgcolor='#EEEEEE'><sub> </sub>#20B2AA<sup> lightseagreen </sup></span></tt>,mbxcolors getcolorcode '#20B2AA',,,#cyan
110 <tt><span bgcolor='#5F9EA0' fgcolor='#EEEEEE'><sub> </sub>#5F9EA0<sup> cadetblue </sup></span></tt>,mbxcolors getcolorcode '#5F9EA0';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#5F9EA0' fgcolor='#EEEEEE'><sub> </sub>#5F9EA0<sup> cadetblue </sup></span></tt>,mbxcolors getcolorcode '#5F9EA0',,,#cyan
111 <tt><span bgcolor='#008B8B' fgcolor='#EEEEEE'><sub> </sub>#008B8B<sup> darkcyan </sup></span></tt>,mbxcolors getcolorcode '#008B8B';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#008B8B' fgcolor='#EEEEEE'><sub> </sub>#008B8B<sup> darkcyan </sup></span></tt>,mbxcolors getcolorcode '#008B8B',,,#cyan
112 <tt><span bgcolor='#008080' fgcolor='#EEEEEE'><sub> </sub>#008080<sup> teal </sup></span></tt>,mbxcolors getcolorcode '#008080';mbxcolors setvar expose=html,,,#cyan <tt><span bgcolor='#008080' fgcolor='#EEEEEE'><sub> </sub>#008080<sup> teal </sup></span></tt>,mbxcolors getcolorcode '#008080',,,#cyan
113 ^tag(blue)
114 ^sep(Blue colors)
115 <tt><span bgcolor='#B0E0E6' fgcolor='#111111'><sub> </sub>#B0E0E6<sup> powderblue </sup></span></tt>,mbxcolors getcolorcode '#B0E0E6';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#B0E0E6' fgcolor='#111111'><sub> </sub>#B0E0E6<sup> powderblue </sup></span></tt>,mbxcolors getcolorcode '#B0E0E6',,,#blue
116 <tt><span bgcolor='#ADD8E6' fgcolor='#111111'><sub> </sub>#ADD8E6<sup> lightblue </sup></span></tt>,mbxcolors getcolorcode '#ADD8E6';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#ADD8E6' fgcolor='#111111'><sub> </sub>#ADD8E6<sup> lightblue </sup></span></tt>,mbxcolors getcolorcode '#ADD8E6',,,#blue
117 <tt><span bgcolor='#87CEFA' fgcolor='#111111'><sub> </sub>#87CEFA<sup> lightskyblue </sup></span></tt>,mbxcolors getcolorcode '#87CEFA';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#87CEFA' fgcolor='#111111'><sub> </sub>#87CEFA<sup> lightskyblue </sup></span></tt>,mbxcolors getcolorcode '#87CEFA',,,#blue
118 <tt><span bgcolor='#87CEEB' fgcolor='#111111'><sub> </sub>#87CEEB<sup> skyblue </sup></span></tt>,mbxcolors getcolorcode '#87CEEB';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#87CEEB' fgcolor='#111111'><sub> </sub>#87CEEB<sup> skyblue </sup></span></tt>,mbxcolors getcolorcode '#87CEEB',,,#blue
119 <tt><span bgcolor='#00BFFF' fgcolor='#EEEEEE'><sub> </sub>#00BFFF<sup> deepskyblue </sup></span></tt>,mbxcolors getcolorcode '#00BFFF';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#00BFFF' fgcolor='#EEEEEE'><sub> </sub>#00BFFF<sup> deepskyblue </sup></span></tt>,mbxcolors getcolorcode '#00BFFF',,,#blue
120 <tt><span bgcolor='#B0C4DE' fgcolor='#111111'><sub> </sub>#B0C4DE<sup> lightsteelblue </sup></span></tt>,mbxcolors getcolorcode '#B0C4DE';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#B0C4DE' fgcolor='#111111'><sub> </sub>#B0C4DE<sup> lightsteelblue </sup></span></tt>,mbxcolors getcolorcode '#B0C4DE',,,#blue
121 <tt><span bgcolor='#1E90FF' fgcolor='#EEEEEE'><sub> </sub>#1E90FF<sup> dodgerblue </sup></span></tt>,mbxcolors getcolorcode '#1E90FF';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#1E90FF' fgcolor='#EEEEEE'><sub> </sub>#1E90FF<sup> dodgerblue </sup></span></tt>,mbxcolors getcolorcode '#1E90FF',,,#blue
122 <tt><span bgcolor='#6495ED' fgcolor='#EEEEEE'><sub> </sub>#6495ED<sup> cornflowerblue </sup></span></tt>,mbxcolors getcolorcode '#6495ED';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#6495ED' fgcolor='#EEEEEE'><sub> </sub>#6495ED<sup> cornflowerblue </sup></span></tt>,mbxcolors getcolorcode '#6495ED',,,#blue
123 <tt><span bgcolor='#4682B4' fgcolor='#EEEEEE'><sub> </sub>#4682B4<sup> steelblue </sup></span></tt>,mbxcolors getcolorcode '#4682B4';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#4682B4' fgcolor='#EEEEEE'><sub> </sub>#4682B4<sup> steelblue </sup></span></tt>,mbxcolors getcolorcode '#4682B4',,,#blue
124 <tt><span bgcolor='#4169E1' fgcolor='#EEEEEE'><sub> </sub>#4169E1<sup> royalblue </sup></span></tt>,mbxcolors getcolorcode '#4169E1';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#4169E1' fgcolor='#EEEEEE'><sub> </sub>#4169E1<sup> royalblue </sup></span></tt>,mbxcolors getcolorcode '#4169E1',,,#blue
125 <tt><span bgcolor='#0000FF' fgcolor='#EEEEEE'><sub> </sub>#0000FF<sup> blue </sup></span></tt>,mbxcolors getcolorcode '#0000FF';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#0000FF' fgcolor='#EEEEEE'><sub> </sub>#0000FF<sup> blue </sup></span></tt>,mbxcolors getcolorcode '#0000FF',,,#blue
126 <tt><span bgcolor='#0000CD' fgcolor='#EEEEEE'><sub> </sub>#0000CD<sup> mediumblue </sup></span></tt>,mbxcolors getcolorcode '#0000CD';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#0000CD' fgcolor='#EEEEEE'><sub> </sub>#0000CD<sup> mediumblue </sup></span></tt>,mbxcolors getcolorcode '#0000CD',,,#blue
127 <tt><span bgcolor='#00008B' fgcolor='#EEEEEE'><sub> </sub>#00008B<sup> darkblue </sup></span></tt>,mbxcolors getcolorcode '#00008B';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#00008B' fgcolor='#EEEEEE'><sub> </sub>#00008B<sup> darkblue </sup></span></tt>,mbxcolors getcolorcode '#00008B',,,#blue
128 <tt><span bgcolor='#000080' fgcolor='#EEEEEE'><sub> </sub>#000080<sup> navy </sup></span></tt>,mbxcolors getcolorcode '#000080';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#000080' fgcolor='#EEEEEE'><sub> </sub>#000080<sup> navy </sup></span></tt>,mbxcolors getcolorcode '#000080',,,#blue
129 <tt><span bgcolor='#191970' fgcolor='#EEEEEE'><sub> </sub>#191970<sup> midnightblue </sup></span></tt>,mbxcolors getcolorcode '#191970';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#191970' fgcolor='#EEEEEE'><sub> </sub>#191970<sup> midnightblue </sup></span></tt>,mbxcolors getcolorcode '#191970',,,#blue
130 <tt><span bgcolor='#7B68EE' fgcolor='#EEEEEE'><sub> </sub>#7B68EE<sup> mediumslateblue </sup></span></tt>,mbxcolors getcolorcode '#7B68EE';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#7B68EE' fgcolor='#EEEEEE'><sub> </sub>#7B68EE<sup> mediumslateblue </sup></span></tt>,mbxcolors getcolorcode '#7B68EE',,,#blue
131 <tt><span bgcolor='#6A5ACD' fgcolor='#EEEEEE'><sub> </sub>#6A5ACD<sup> slateblue </sup></span></tt>,mbxcolors getcolorcode '#6A5ACD';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#6A5ACD' fgcolor='#EEEEEE'><sub> </sub>#6A5ACD<sup> slateblue </sup></span></tt>,mbxcolors getcolorcode '#6A5ACD',,,#blue
132 <tt><span bgcolor='#483D8B' fgcolor='#EEEEEE'><sub> </sub>#483D8B<sup> darkslateblue </sup></span></tt>,mbxcolors getcolorcode '#483D8B';mbxcolors setvar expose=html,,,#blue <tt><span bgcolor='#483D8B' fgcolor='#EEEEEE'><sub> </sub>#483D8B<sup> darkslateblue </sup></span></tt>,mbxcolors getcolorcode '#483D8B',,,#blue
133 ^tag(purple)
134 ^sep(Purple colors)
135 <tt><span bgcolor='#E6E6FA' fgcolor='#111111'><sub> </sub>#E6E6FA<sup> lavender </sup></span></tt>,mbxcolors getcolorcode '#E6E6FA';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#E6E6FA' fgcolor='#111111'><sub> </sub>#E6E6FA<sup> lavender </sup></span></tt>,mbxcolors getcolorcode '#E6E6FA',,,#purple
136 <tt><span bgcolor='#D8BFD8' fgcolor='#111111'><sub> </sub>#D8BFD8<sup> thistle </sup></span></tt>,mbxcolors getcolorcode '#D8BFD8';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#D8BFD8' fgcolor='#111111'><sub> </sub>#D8BFD8<sup> thistle </sup></span></tt>,mbxcolors getcolorcode '#D8BFD8',,,#purple
137 <tt><span bgcolor='#DDA0DD' fgcolor='#111111'><sub> </sub>#DDA0DD<sup> plum </sup></span></tt>,mbxcolors getcolorcode '#DDA0DD';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#DDA0DD' fgcolor='#111111'><sub> </sub>#DDA0DD<sup> plum </sup></span></tt>,mbxcolors getcolorcode '#DDA0DD',,,#purple
138 <tt><span bgcolor='#EE82EE' fgcolor='#111111'><sub> </sub>#EE82EE<sup> violet </sup></span></tt>,mbxcolors getcolorcode '#EE82EE';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#EE82EE' fgcolor='#111111'><sub> </sub>#EE82EE<sup> violet </sup></span></tt>,mbxcolors getcolorcode '#EE82EE',,,#purple
139 <tt><span bgcolor='#DA70D6' fgcolor='#111111'><sub> </sub>#DA70D6<sup> orchid </sup></span></tt>,mbxcolors getcolorcode '#DA70D6';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#DA70D6' fgcolor='#111111'><sub> </sub>#DA70D6<sup> orchid </sup></span></tt>,mbxcolors getcolorcode '#DA70D6',,,#purple
140 <tt><span bgcolor='#FF00FF' fgcolor='#EEEEEE'><sub> </sub>#FF00FF<sup> fuchsia </sup></span></tt>,mbxcolors getcolorcode '#FF00FF';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#FF00FF' fgcolor='#EEEEEE'><sub> </sub>#FF00FF<sup> fuchsia </sup></span></tt>,mbxcolors getcolorcode '#FF00FF',,,#purple
141 <tt><span bgcolor='#FF00FF' fgcolor='#EEEEEE'><sub> </sub>#FF00FF<sup> magenta </sup></span></tt>,mbxcolors getcolorcode '#FF00FF';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#FF00FF' fgcolor='#EEEEEE'><sub> </sub>#FF00FF<sup> magenta </sup></span></tt>,mbxcolors getcolorcode '#FF00FF',,,#purple
142 <tt><span bgcolor='#BA55D3' fgcolor='#EEEEEE'><sub> </sub>#BA55D3<sup> mediumorchid </sup></span></tt>,mbxcolors getcolorcode '#BA55D3';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#BA55D3' fgcolor='#EEEEEE'><sub> </sub>#BA55D3<sup> mediumorchid </sup></span></tt>,mbxcolors getcolorcode '#BA55D3',,,#purple
143 <tt><span bgcolor='#9370DB' fgcolor='#EEEEEE'><sub> </sub>#9370DB<sup> mediumpurple </sup></span></tt>,mbxcolors getcolorcode '#9370DB';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#9370DB' fgcolor='#EEEEEE'><sub> </sub>#9370DB<sup> mediumpurple </sup></span></tt>,mbxcolors getcolorcode '#9370DB',,,#purple
144 <tt><span bgcolor='#8A2BE2' fgcolor='#EEEEEE'><sub> </sub>#8A2BE2<sup> blueviolet </sup></span></tt>,mbxcolors getcolorcode '#8A2BE2';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#8A2BE2' fgcolor='#EEEEEE'><sub> </sub>#8A2BE2<sup> blueviolet </sup></span></tt>,mbxcolors getcolorcode '#8A2BE2',,,#purple
145 <tt><span bgcolor='#9400D3' fgcolor='#EEEEEE'><sub> </sub>#9400D3<sup> darkviolet </sup></span></tt>,mbxcolors getcolorcode '#9400D3';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#9400D3' fgcolor='#EEEEEE'><sub> </sub>#9400D3<sup> darkviolet </sup></span></tt>,mbxcolors getcolorcode '#9400D3',,,#purple
146 <tt><span bgcolor='#9932CC' fgcolor='#EEEEEE'><sub> </sub>#9932CC<sup> darkorchid </sup></span></tt>,mbxcolors getcolorcode '#9932CC';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#9932CC' fgcolor='#EEEEEE'><sub> </sub>#9932CC<sup> darkorchid </sup></span></tt>,mbxcolors getcolorcode '#9932CC',,,#purple
147 <tt><span bgcolor='#8B008B' fgcolor='#EEEEEE'><sub> </sub>#8B008B<sup> darkmagenta </sup></span></tt>,mbxcolors getcolorcode '#8B008B';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#8B008B' fgcolor='#EEEEEE'><sub> </sub>#8B008B<sup> darkmagenta </sup></span></tt>,mbxcolors getcolorcode '#8B008B',,,#purple
148 <tt><span bgcolor='#800080' fgcolor='#EEEEEE'><sub> </sub>#800080<sup> purple </sup></span></tt>,mbxcolors getcolorcode '#800080';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#800080' fgcolor='#EEEEEE'><sub> </sub>#800080<sup> purple </sup></span></tt>,mbxcolors getcolorcode '#800080',,,#purple
149 <tt><span bgcolor='#4B0082' fgcolor='#EEEEEE'><sub> </sub>#4B0082<sup> indigo </sup></span></tt>,mbxcolors getcolorcode '#4B0082';mbxcolors setvar expose=html,,,#purple <tt><span bgcolor='#4B0082' fgcolor='#EEEEEE'><sub> </sub>#4B0082<sup> indigo </sup></span></tt>,mbxcolors getcolorcode '#4B0082',,,#purple
150 ^tag(gray)
151 ^sep(Gray colors)
152 <tt><span bgcolor='#DCDCDC' fgcolor='#111111'><sub> </sub>#DCDCDC<sup> gainsboro </sup></span></tt>,mbxcolors getcolorcode '#DCDCDC';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#DCDCDC' fgcolor='#111111'><sub> </sub>#DCDCDC<sup> gainsboro </sup></span></tt>,mbxcolors getcolorcode '#DCDCDC',,,#gray
153 <tt><span bgcolor='#D3D3D3' fgcolor='#111111'><sub> </sub>#D3D3D3<sup> lightgray </sup></span></tt>,mbxcolors getcolorcode '#D3D3D3';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#D3D3D3' fgcolor='#111111'><sub> </sub>#D3D3D3<sup> lightgray </sup></span></tt>,mbxcolors getcolorcode '#D3D3D3',,,#gray
154 <tt><span bgcolor='#C0C0C0' fgcolor='#111111'><sub> </sub>#C0C0C0<sup> silver </sup></span></tt>,mbxcolors getcolorcode '#C0C0C0';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#C0C0C0' fgcolor='#111111'><sub> </sub>#C0C0C0<sup> silver </sup></span></tt>,mbxcolors getcolorcode '#C0C0C0',,,#gray
155 <tt><span bgcolor='#A9A9A9' fgcolor='#111111'><sub> </sub>#A9A9A9<sup> darkgray </sup></span></tt>,mbxcolors getcolorcode '#A9A9A9';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#A9A9A9' fgcolor='#111111'><sub> </sub>#A9A9A9<sup> darkgray </sup></span></tt>,mbxcolors getcolorcode '#A9A9A9',,,#gray
156 <tt><span bgcolor='#808080' fgcolor='#EEEEEE'><sub> </sub>#808080<sup> gray </sup></span></tt>,mbxcolors getcolorcode '#808080';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#808080' fgcolor='#EEEEEE'><sub> </sub>#808080<sup> gray </sup></span></tt>,mbxcolors getcolorcode '#808080',,,#gray
157 <tt><span bgcolor='#696969' fgcolor='#EEEEEE'><sub> </sub>#696969<sup> dimgray </sup></span></tt>,mbxcolors getcolorcode '#696969';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#696969' fgcolor='#EEEEEE'><sub> </sub>#696969<sup> dimgray </sup></span></tt>,mbxcolors getcolorcode '#696969',,,#gray
158 <tt><span bgcolor='#778899' fgcolor='#EEEEEE'><sub> </sub>#778899<sup> lightslategray </sup></span></tt>,mbxcolors getcolorcode '#778899';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#778899' fgcolor='#EEEEEE'><sub> </sub>#778899<sup> lightslategray </sup></span></tt>,mbxcolors getcolorcode '#778899',,,#gray
159 <tt><span bgcolor='#708090' fgcolor='#EEEEEE'><sub> </sub>#708090<sup> slategray </sup></span></tt>,mbxcolors getcolorcode '#708090';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#708090' fgcolor='#EEEEEE'><sub> </sub>#708090<sup> slategray </sup></span></tt>,mbxcolors getcolorcode '#708090',,,#gray
160 <tt><span bgcolor='#2F4F4F' fgcolor='#EEEEEE'><sub> </sub>#2F4F4F<sup> darkslategray </sup></span></tt>,mbxcolors getcolorcode '#2F4F4F';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#2F4F4F' fgcolor='#EEEEEE'><sub> </sub>#2F4F4F<sup> darkslategray </sup></span></tt>,mbxcolors getcolorcode '#2F4F4F',,,#gray
161 <tt><span bgcolor='#000000' fgcolor='#EEEEEE'><sub> </sub>#000000<sup> black </sup></span></tt>,mbxcolors getcolorcode '#000000';mbxcolors setvar expose=html,,,#gray <tt><span bgcolor='#000000' fgcolor='#EEEEEE'><sub> </sub>#000000<sup> black </sup></span></tt>,mbxcolors getcolorcode '#000000',,,#gray