#!/bin/sh

#rs are optional, and the keywords are: 
#       normal, selected, marked, markselect, errors, input, reverse,  gauge;  

# Menu colors  are: 
#       menu,  menusel,  menuhot,  menuhotsel;   

# Dialog colors are:
#       dnormal, dfocus, dhotnormal, dhotfocus;  

# Help colors are: 
#       helpnormal, helpitalic, helpbold, helplink, helpslink; 

# Viewer color is: viewunderline; 

# Special highlighting  colors  are:  
#       executable,  directory,  link, device, special, core; 

# Editor colors are: 
#       editnormal, editbold, editmarked

# The possible colors are: 

# black, gray,
# red, brightred,
# green, brightgreen,
# brown, yellow,
# blue, brightblue,
# magenta, brightmagenta,
# cyan, brightcyan,
# lightgray and white. 

# And there is a special keyword for transparent background. It is 'default'.
# The 'default' can  only  be used for background color. 

env MC_COLOR_TABLE="\
\
normal=cyan,default:\
selected=black,cyan:\
marked=yellow,default:\
markselect=yellow,cyan:\
errors=yellow,red:\
input=cyan,default:\
reverse=cyan,default:\
gauge=black,cyan:\
\
menu=black,cyan:\
menusel=cyan,default:\
menuhot=lightgray,cyan:\
menuhotsel=cyan,default:\
\
dnormal=cyan,default:\
dfocus=black,cyan:\
dhotnormal=cyan,default:\
dhotfocus=cyan,default:\
\
helpnormal=cyan,default:\
helpitalic=brightcyan,default:\
helpbold=brightcyan,default:\
helplink=blue,default:\
helpslink=black,cyan:\
\
viewunderline=red,brown:\
\
executable=green,default:\
directory=brightcyan,default:\
link=lightgray,default:\
device=magenta,default:\
special=white,default:\
core=white,default:\
\
editnormal=lightgray,default:\
editbold=red,brown:\
editmarked=black,cyan\
" \
mc ${*}
