Thank you so much but..
I don't know what's going on, the healthbar is still not colored per player class

so there's something wrong on my end despite I used a fresh WoW install folder (no addons no WTF no WDB)
Otherwise I suggest you a few things:
1- on the nameplates.lua the border fits better your UI style if it's darker:
- Code: Select all
border:SetVertexColor(.1, .1, .1)
instead of:
border:SetVertexColor(.4, .4, .4)
2- It should be nice to implement for the chat the timestamp and clickable url links and dunno if it's in already: the clickable invites.
3- The color of the unit health, mana, energy could be a bit refreshed to have that perfect mix between classic and modern.
I found in that code some colors that would fit me think (they fits very well for the nameplates already), I let you sort it out
- Code: Select all
local red, green, blue, _ = Name:GetTextColor() --Set Color of Namelabel
-- Print(red.." "..green.." "..blue)
if red > 0.99 and green == 0 and blue == 0 then
Name:SetTextColor(1,0.4,0.2,0.85)
elseif red > 0.99 and green > 0.81 and green < 0.82 and blue == 0 then
Name:SetTextColor(1,1,1,0.85)
end
local red, green, blue, _ = HealthBar:GetStatusBarColor() --Set Color of Healthbar
if blue > 0.99 and red == 0 and green == 0 then
HealthBar:SetStatusBarColor(0.2,0.6,1,0.85)
elseif red == 0 and green > 0.99 and blue == 0 then
HealthBar:SetStatusBarColor(0.6,1,0,0.85)
end
local red, green, blue, _ = Level:GetTextColor() --Set Color of Level
if red > 0.99 and green == 0 and blue == 0 then
Level:SetTextColor(1,0.4,0.2,0.85)
elseif red > 0.99 and green > 0.81 and green < 0.82 and blue == 0 then
Level:SetTextColor(1,1,1,0.85)
end
4- could the map with its poinpoints you're preparing work with Cartographer or Gatherer Mining and Herborist?
Finally as a workaround for the moment I'm using that CustomNameplates that I edited to fit your UI (you can see the colors I talked about on the nameplates, I'm going to attempt to apply them to the unitframes)




with a few healthbars:
http://i.imgur.com/QyLZ0LG.jpg (that one's too big

)
How could I darken a bit the border of the Minimap?
Edit: you seem to do not have the Blizzard colors and texture within your unitframes

so that would be an other thing that is broken for me here

Edit2: here's the
link to download the modified CustomNameplates for modui, like that you can check how I'd like yours somehow
not for you modernist

: don't forget to change the line:
- Code: Select all
modplate\nameplates.lua
in modui/modui.toc
to
- Code: Select all
## modplate\nameplates.lua