From: Zac Medico Date: Fri, 29 Jun 2007 21:46:13 +0000 (-0000) Subject: Add a 0xAAAA00 rgb color code to represent the darkyellow color that some terminals... X-Git-Tag: v2.2_pre1~1115 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b13ef4d400786b3a88f1d8e9c3124c2e57585779;p=portage.git Add a 0xAAAA00 rgb color code to represent the darkyellow color that some terminals have instead of brown. svn path=/main/trunk/; revision=7094 --- diff --git a/pym/portage/output.py b/pym/portage/output.py index 356f59e1b..2f64eaf60 100644 --- a/pym/portage/output.py +++ b/pym/portage/output.py @@ -113,7 +113,9 @@ codes["white"] = codes["0xFFFFFF"] codes["lightgray"] = codes["0xAAAAAA"] codes["darkteal"] = codes["turquoise"] -codes["darkyellow"] = codes["brown"] +# Some terminals have darkyellow instead of brown. +codes["0xAAAA00"] = codes["brown"] +codes["darkyellow"] = codes["0xAAAA00"] codes["fuscia"] = codes["fuchsia"] codes["white"] = codes["bold"]