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
05-19-11, 08:00 AM   #7
nin
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Dec 2008
Posts: 213
My favourite color page.

http://colorschemedesigner.com/

my current classcolors.

Code:
["HUNTER"] = { r = 0.58, g = 0.86, b = 0.49 },
	["WARLOCK"] = { r = 0.6, g = 0.47, b = 0.85 },
	["PRIEST"] = { r = 0.8, g = 0.94, b = 1 },
	["PALADIN"] = { r = 1, g = 0.22, b = 0.52 },
	["MAGE"] = { r = 0, g = 0.76, b = 1 },
	["ROGUE"] = { r = 1, g = 0.91, b = 0 },
	["DRUID"] = { r = 255/255, g = 102/255, b = 51/255 };
	["SHAMAN"] = { r = 000/255, g = 153/255, b = 153/255 };
	["WARRIOR"] = { r = 1, g = 0.7, b = 0.49 },
	["DEATHKNIGHT"] = { r = 1, g = 0 , b = 0.38 },
};
  Reply With Quote
05-19-11, 10:19 AM   #8
Rosoaa
A Flamescale Wyrmkin
 
Rosoaa's Avatar
AddOn Compiler - Click to view compilations
Join Date: Mar 2007
Posts: 107
Thanks for the replies I'll check these out.
__________________
Rosoaa's UI
  Reply With Quote
05-19-11, 07:06 PM   #9
Kendian
A Molten Giant
 
Kendian's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 614
One addon that has helped me IMMENSELY, is ColorPickerPlus, here on WoWInterface. It gives html/rgb codes AND lets you copy/paste, so you get exact matches. It's a def must for anyone who plays World of UICraft~
__________________
  Reply With Quote
05-19-11, 08:39 PM   #10
Dawn
A Molten Giant
 
Dawn's Avatar
AddOn Author - Click to view addons
Join Date: May 2006
Posts: 918
Originally Posted by Kendian View Post
One addon that has helped me IMMENSELY, is ColorPickerPlus, here on WoWInterface. It gives html/rgb codes AND lets you copy/paste, so you get exact matches. It's a def must for anyone who plays World of UICraft~
Yeah, I can really second this, must have addon!
__________________
Rock: "We're sub-standard DPS. Nerf Paper, Scissors are fine."
Paper: "OMG, WTF, Scissors!"
Scissors: "Rock is OP and Paper are QQers. We need PvP buffs."

"neeh the game wont be remembered as the game who made blizz the most money, it will be remembered as the game who had the most QQ'ers that just couldnt quit the game for some reason..."

  Reply With Quote
05-20-11, 03:39 AM   #11
sakurakira
A Chromatic Dragonspawn
 
sakurakira's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 151
Originally Posted by nin View Post
My favourite color page.

http://colorschemedesigner.com/
Wow... that site is FANTASTIC! <3 <3
__________________
Arise, my champion!
  Reply With Quote

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

Thread Tools
Display Modes

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