WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   AddOn Search/Requests (https://www.wowinterface.com/forums/forumdisplay.php?f=6)
-   -   Bored with the default class colors (https://www.wowinterface.com/forums/showthread.php?t=40191)

Rosoaa 05-19-11 01:26 AM

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.

tinyu 05-19-11 01:30 AM

Class Colors is what you want.

Rosoaa 05-19-11 01:39 AM

Yes, I'm looking for rgb values.

haylie 05-19-11 01:50 AM

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 },
};


Vlad 05-19-11 06:19 AM

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. ;)

Aprikot 05-19-11 07:14 AM

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)...


nin 05-19-11 08:00 AM

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 },
};


Rosoaa 05-19-11 10:19 AM

Thanks for the replies I'll check these out.

Kendian 05-19-11 07:06 PM

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~

Dawn 05-19-11 08:39 PM

Quote:

Originally Posted by Kendian (Post 237625)
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! :D

sakurakira 05-20-11 03:39 AM

Quote:

Originally Posted by nin (Post 237592)
My favourite color page.

http://colorschemedesigner.com/

Wow... that site is FANTASTIC! <3 <3


All times are GMT -6. The time now is 01:19 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI