# by arne and lfe

## salora(tm?) logo lookalike

needmod color
needmod number-extra
ANSICOLOR_RED=aa0000
ANSICOLOR_BLUE=0000aa
ANSICOLOR_GREEN=00aa00
TITLE="technicolor $LATINNUMBER"
WELCOMEMESSAGE="bashish ..now in Technicolor (tm)
"

prompthelp ()
{
cat <<EOH
Bashish Now In Technicolor (tm)

usage:

changetheme technicolor [<option>]

options:

iso		- for terminals which do not support ANSI characters
monochrome	- oldstyle theme

EOH
}

case "$1" in
-iso)
PROMPT=`color fgblack bgred bold`=`color fgblack bggreen bold`=`color fgblack bgblue bold`=`color normal`" "
;;
-monochrome)
TITLE="mono $LATINNUMBER"
WELCOMEMESSAGE="Monochrome bashish"
PROMPT=" "
;;
*)
PROMPT="`color fgblack bgred fgbold``color fgblack bggreen bold``color fgblack bgblue bold``color normal` "
esac
