I tweaked a bit the textures and transparency of the top experience statistics panel (center top paragon / dmg/h / time to Px).
It's hard to see it on the picture but it has a bit of transparency and looks good everywhere.

Customization :
if you want to try it, paste that code in the Customize part of :
plugins\User\PluginEnablerOrDisablerPlugin.cs
PHP Code:
// Top Experience Statistics Customization
Hud.RunOnPlugin<TopExperienceStatistics>(plugin =>
{
foreach (var lbl in plugin.LabelList.LabelDecorators)
{
lbl.BackgroundTexture1 = Hud.Texture.ButtonTextureGray;
lbl.BackgroundTexture2 = Hud.Texture.BackgroundTextureOrange;
lbl.BackgroundTextureOpacity1 = 0.7f;
lbl.BackgroundTextureOpacity2 = 0.3f;
if (lbl.ExpandDownLabels == null) continue;
foreach (var lblDown in lbl.ExpandDownLabels)
{
lblDown.BackgroundTexture1 = Hud.Texture.ButtonTextureGray;
lblDown.BackgroundTexture2 = Hud.Texture.BackgroundTextureOrange;
lblDown.BackgroundTextureOpacity1 = 0.7f;
lblDown.BackgroundTextureOpacity2 = 0.3f;
}
}
});
// End of Top Experience Statistics Customization