From faa544f3534c3dc6bc54cb50cffa9655d6883937 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Mon, 22 Mar 2010 05:50:41 -0400 Subject: [PATCH] Changed hex codes for ORANGE, GREEN, and MIDGREY to be identical to the skill level codes in the default UI. --- Colour.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Colour.lua b/Colour.lua index ccfb851..dc36bbb 100644 --- a/Colour.lua +++ b/Colour.lua @@ -22,9 +22,11 @@ local addon = LibStub("AceAddon-3.0"):GetAddon(MODNAME) --Colour constants local RED = "ff0000" -local ORANGE = "ff7f00" +--local ORANGE = "ff7f00" +local ORANGE = "ff8040" local YELLOW = "ffff00" -local GREEN = "00ff00" +--local GREEN = "00ff00" +local GREEN = "40bf40" local WHITE = "ffffff" local COPPER = "eda55f" local SILVER = "c7c7cf" @@ -34,7 +36,8 @@ local BLUE = "0000ff" local CYAN = "00ffff" local BLACK = "000000" local GREY = "666666" -local MIDGREY = "858585" +--local MIDGREY = "858585" +local MIDGREY = "808080" local NEUTRAL = "bfbfbf" local FRIENDLY = WHITE local HONORED = "00ff00" -- 1.7.9.5