Thread Tools Display Modes
05-19-11, 01:26 AM   #1
Rosoaa
A Flamescale Wyrmkin
 
Rosoaa's Avatar
AddOn Compiler - Click to view compilations
Join Date: Mar 2007
Posts: 107
Bored with the default class colors

Any cool themes? I could use a change. Possibly brighter colors. If you have the rgb values post em! Thanks.
__________________
Rosoaa's UI
  Reply With Quote
05-19-11, 01:30 AM   #2
tinyu
A Molten Giant
 
tinyu's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 837
Class Colors is what you want.
__________________
"There's no such thing as too many addons."
Lothaer
Titan Dev Team Member.
  Reply With Quote
05-19-11, 01:39 AM   #3
Rosoaa
A Flamescale Wyrmkin
 
Rosoaa's Avatar
AddOn Compiler - Click to view compilations
Join Date: Mar 2007
Posts: 107
Yes, I'm looking for rgb values.
__________________
Rosoaa's UI
  Reply With Quote
05-19-11, 01:50 AM   #4
haylie
A Scalebane Royal Guard
 
haylie's Avatar
Join Date: May 2009
Posts: 417
What I had before I quit. I think they were pretty bright.

Code:
RAID_CLASS_COLORS = {
	["HUNTER"] = { r = 0.56, g = 0.76, b = 0.13 },
	["WARLOCK"] = { r = 0.58, g = 0.41, b = 0.79 },
	["PRIEST"] = { r = 1, g = 1, b = 1 },
	["PALADIN"] = { r = 1.00, g = 0.27, b = 0.64 },
	["MAGE"] = { r = 0.41, g = 0.75, b = 1 },
	["ROGUE"] = { r = 0.98, g = 0.71, b = 0.21 },
	["DRUID"] = { r = 1.0, g = 0.40, b = 0.04 },
	["SHAMAN"] = { r = 0.00, g = 0.57, b = 0.83 };
	["WARRIOR"] = { r = .42, g = 0.34, b = 0.27 },
	["DEATHKNIGHT"] = { r = 0.77, g = 0.12 , b = 0.23 },
};
  Reply With Quote
05-19-11, 06:19 AM   #5
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2005
Posts: 793
If you want to make all colors overall more bright or darker you could do something like:

Code:
local cmod = 1
for k, v in pairs(RAID_CLASS_COLORS) do
  local r, g, b = v.r*cmod, v.g*cmod, v.b*cmod
  if r < 0 then r = 0 elseif r > 1 then r = 1 end
  if g < 0 then g = 0 elseif g > 1 then g = 1 end
  if b < 0 then b = 0 elseif b > 1 then b = 1 end
  RAID_CLASS_COLORS[k] = {r=r, g=g, b=b}
end
Or if you want totally custom colors you could do like this so it's easier reading the RGB values:

Code:
RAID_CLASS_COLORS.DEATHKNIGHT = {r=196/255, g= 30/255, b= 59/255}
RAID_CLASS_COLORS.DRUID       = {r=255/255, g=125/255, b= 10/255}
RAID_CLASS_COLORS.HUNTER      = {r=171/255, g=212/255, b=115/255}
RAID_CLASS_COLORS.MAGE        = {r=105/255, g=204/255, b=240/255}
RAID_CLASS_COLORS.PALADIN     = {r=245/255, g=140/255, b=186/255}
RAID_CLASS_COLORS.PRIEST      = {r=255/255, g=255/255, b=255/255}
RAID_CLASS_COLORS.ROGUE       = {r=255/255, g=245/255, b=105/255}
RAID_CLASS_COLORS.SHAMAN      = {r=  0/255, g=112/255, b=222/255}
RAID_CLASS_COLORS.WARLOCK     = {r=148/255, g=130/255, b=201/255}
RAID_CLASS_COLORS.WARRIOR     = {r=199/255, g=156/255, b=110/255}
Druids RGB is (255, 125, 10) much easier to read than (0.1, 0.49, 0.04) imo.
  Reply With Quote
05-19-11, 07:14 AM   #6
Aprikot
A Frostmaul Preserver
 
Aprikot's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2010
Posts: 284
Color scheme generators help me out (and are fun imo ). There are a bunch ofc...I've been messing lately with http://www.colorsontheweb.com/colorwizard.asp (I'm a tetrad fan...druid, pally, hunter, shammy here I guess)...

  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Bored with the default class colors


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off