Using colors when printing text to a console can be quite helpful for a program's users and, under Unix-like operating systems, it is natively supported by almost any shell. The following code shows the '''ccolor''' namespace containing several variables with common color codes and a procedure for parsing text containing tags. On the bottom of the page you can find examples on how to use it. ---- ======tcl # ########################################################################### # # Description: # This namespace contains console color codes defined in variables which # can be used for adding color in text strings. # Additionally, it contains a procedure which replaces certain tags in a # text with their corresponding color codes, making the resulting string # suitable for dumping to a console supporting colors. # |-------------------|--------------------|------------------| # |Effects |Foreground Colors |Background Colors | # |-------------------|--------------------|------------------| # |bold : \e[1m |black : \e[30m |black : \e[40m | # |-------------------|--------------------|------------------| # |dim : \e[2m |red : \e[31m |red : \e[41m | # |-------------------|--------------------|------------------| # |underlined : \e[4m |green : \e[32m |green : \e[42m | # |-------------------|--------------------|------------------| # |blink : \e[5m |yellow : \e[33m |yellow : \e[43m | # |-------------------|--------------------|------------------| # |reverse : \e[7m |blue : \e[34m |blue : \e[44m | # |-------------------|--------------------|------------------| # |invisible : \e[8m |magenta : \e[35m |magenta : \e[45m | # |-------------------|--------------------|------------------| # | |cyan : \e[36m |cyan : \e[46m | # |-------------------|--------------------|------------------| # | |white : \e[37m |white : \e[47m | # |-------------------|--------------------|------------------| # | |default : \e[39m |default : \e[49m | # |-------------------|--------------------|------------------| # # To reset the color codes: # - reset : \e[0 # Helpful control characters: # - backspace : \b # # Examples: # puts [ccolor::replace "Blue on a yellow background."] # puts [ccolor::replace "Underline and reverse."] # ########################################################################### # namespace eval ccolor { variable reset [binary format a4 \x1b\x5b\x30\x6d] # Helpful control characters # variable backspace [binary format a1 \x08] # Foreground # variable bold [binary format a4 \x1b\x5b\x31\x6d] variable dim [binary format a4 \x1b\x5b\x32\x6d] variable underlined [binary format a4 \x1b\x5b\x34\x6d] variable blink [binary format a4 \x1b\x5b\x35\x6d] variable reverse [binary format a4 \x1b\x5b\x37\x6d] variable invisible [binary format a4 \x1b\x5b\x39\x6d] # Foreground colors # variable black [binary format a5 \x1b\x5b\x33\x30\x6d] variable red [binary format a5 \x1b\x5b\x33\x31\x6d] variable green [binary format a5 \x1b\x5b\x33\x32\x6d] variable yellow [binary format a5 \x1b\x5b\x33\x33\x6d] variable blue [binary format a5 \x1b\x5b\x33\x34\x6d] variable magenta [binary format a5 \x1b\x5b\x33\x35\x6d] variable cyan [binary format a5 \x1b\x5b\x33\x36\x6d] variable white [binary format a5 \x1b\x5b\x33\x37\x6d] variable def [binary format a5 \x1b\x5b\x33\x39\x6d] # Background colors # variable bblack [binary format a5 \x1b\x5b\x34\x30\x6d] variable bred [binary format a5 \x1b\x5b\x34\x31\x6d] variable bgreen [binary format a5 \x1b\x5b\x34\x32\x6d] variable byellow [binary format a5 \x1b\x5b\x34\x33\x6d] variable bblue [binary format a5 \x1b\x5b\x34\x34\x6d] variable bmagenta [binary format a5 \x1b\x5b\x34\x35\x6d] variable bcyan [binary format a5 \x1b\x5b\x34\x36\x6d] variable bwhite [binary format a5 \x1b\x5b\x34\x37\x6d] variable bdef [binary format a5 \x1b\x5b\x34\x39\x6d] # ########################################################################### # # Description: # This procedure will parse the given input text and will replace all tags # with the corresponding color code. The tags are: # |---------------------|------------------|--------------------------| # |Effects |Foreground Colors |Background Colors | # |---------------------|------------------|--------------------------| # | : bold (emphasis)| : black | : black background | # |---------------------|------------------|--------------------------| # | : underlined | : red | : red background | # |---------------------|------------------|--------------------------| # | : dim | : green | : green background | # |---------------------|------------------|--------------------------| # | : blink (flash) | : yellow | : yellow background | # |---------------------|------------------|--------------------------| # | : reVerse | : blue | : blue background | # |---------------------|------------------|--------------------------| # | : invisible | : magenta | : magenta background | # |---------------------|------------------|--------------------------| # | | : cyan | : cyan background | # |---------------------|------------------|--------------------------| # | | : white | : white background | # |---------------------|------------------|--------------------------| # | | : default | : default background | # |---------------------|------------------|--------------------------| # # To reset text printing to its normal behavior, use: # : reset # If you want to keep one of these tags unchanged in your text, please # escape them by pre-pending an additional '<' character. For example: # "The < tag sets the text color to red" # "The < tag resets printed text to its normal behavior." # Additional helpful control tag: # : backspace # Examples of legal tagged text: # "This text is red and this one is bold green." # "Blue on a yellow background." # ########################################################################### # proc replace {taggedText} { # Make sure the escaped tags do not get replaced # regsub -all -- "<<" $taggedText "<< " taggedText # Effects # regsub -all -- "" $taggedText $ccolor::bold taggedText regsub -all -- "" $taggedText $ccolor::dim taggedText regsub -all -- "" $taggedText $ccolor::underlined taggedText regsub -all -- "" $taggedText $ccolor::blink taggedText regsub -all -- "" $taggedText $ccolor::reverse taggedText regsub -all -- "" $taggedText $ccolor::invisible taggedText # Foreground colors # regsub -all -- "" $taggedText $ccolor::black taggedText regsub -all -- "" $taggedText $ccolor::red taggedText regsub -all -- "" $taggedText $ccolor::green taggedText regsub -all -- "" $taggedText $ccolor::yellow taggedText regsub -all -- "" $taggedText $ccolor::blue taggedText regsub -all -- "" $taggedText $ccolor::magenta taggedText regsub -all -- "" $taggedText $ccolor::cyan taggedText regsub -all -- "" $taggedText $ccolor::white taggedText regsub -all -- "" $taggedText $ccolor::def taggedText # Background colors # regsub -all -- "" $taggedText $ccolor::bblack taggedText regsub -all -- "" $taggedText $ccolor::bred taggedText regsub -all -- "" $taggedText $ccolor::bgreen taggedText regsub -all -- "" $taggedText $ccolor::byellow taggedText regsub -all -- "" $taggedText $ccolor::bblue taggedText regsub -all -- "" $taggedText $ccolor::bmagenta taggedText regsub -all -- "" $taggedText $ccolor::bcyan taggedText regsub -all -- "" $taggedText $ccolor::bwhite taggedText regsub -all -- "" $taggedText $ccolor::bdef taggedText # Reset # regsub -all -- "" $taggedText $ccolor::reset taggedText # Other control characters # regsub -all -- "" $taggedText $ccolor::backspace taggedText # Re-establish the escaped tags # regsub -all -- "<< " $taggedText "<<" taggedText # Un-escape them # regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText regsub -all -- "<" $taggedText "" taggedText # Return the changed text # return $taggedText } } ====== ---- Here's a short example on how to use it (assuming the code has been saved in a file named ''ccolor.tcl''): ======tcl tclsh8.5 [~]source ccolor.tcl tclsh8.5 [~]append tagged_text "The following is a list of categories (not automatically updated, so there could be some missing) with short descriptions:\n" tclsh8.5 [~]append tagged_text " * Category Category - the meta category - covers the list of all categories.\n" tclsh8.5 [~]append tagged_text " * Category Uncategorized - the \"anti-category\" - put on a page as a reminder that it hasn't really been categorized yet.\n" tclsh8.5 [~]append tagged_text " * Category 3D Graphics - pages relating to 3D graphical display of information\n" tclsh8.5 [~]append tagged_text " * Category Broken Links - used in connection with the Broken Link Report\n" tclsh8.5 [~]puts [ccolor::replace $tagged_text] ====== Or, if you want to use the namespace variables directly in a text string: ======tcl tclsh8.5 [~]puts " * ${ccolor::blue}Category AI${ccolor::reset} - pages relating to Artificial Intelligence" tclsh8.5 [~]puts " * ${ccolor::blue}Category Critcl${ccolor::reset} - discussion of the Tcl runtime compile extension ${ccolor::bgreen}critcl${ccolor::reset}" ====== <>Unix