Was hoping someone could give me a hand with this. I added a class color table to the color.lua in UnitFrames like so
class = setmetatable({
["DEATHKNIGHT"] = { 251/255, 0/255, 36/255 },
["DRUID"] = { 255/255, 126/255, 7/255 },
["HUNTER"] = { 86/255, 211/255, 8/255 },
["MAGE"] = { 4/255, 229/255, 255/255 },
["PALADIN"] = { 253/255, 3/255, 179/255 },
["PRIEST"] = { 255/255, 255/255, 255/255 },
["ROGUE"] = { 255/255, 235/255, 7/255 },
["SHAMAN"] = { 0/255, 118/255, 253/255 },
["WARLOCK"] = { 185/255, 97/255, 253/255 },
["WARRIOR"] = { 255/255, 192/255, 110/255 },
}, {__index = oUF.colors.class}),
It all works fine except the pet frame and castbars don't change to these colors I added. Any suggestions would be great. Thanks