This commit is contained in:
2026-06-07 13:28:25 -07:00
parent 0df0b45163
commit 25b53cb062
25 changed files with 1573 additions and 125 deletions
@@ -66,6 +66,8 @@ namespace ProjectM.Client
l.style.color = Accent;
l.style.unityTextAlign = TextAnchor.MiddleCenter;
l.style.marginBottom = 16;
var theme = HudTheme.Get();
if (theme != null) theme.ApplyDisplay(l.style);
return l;
}
@@ -76,6 +78,8 @@ namespace ProjectM.Client
l.style.color = SubCol;
l.style.unityTextAlign = TextAnchor.MiddleCenter;
l.style.marginTop = 8; l.style.marginBottom = 6;
var theme = HudTheme.Get();
if (theme != null) theme.ApplyBodyLight(l.style);
return l;
}
@@ -90,6 +94,8 @@ namespace ProjectM.Client
b.style.unityFontStyleAndWeight = FontStyle.Bold;
Round(b, 6);
Border(b, new Color(0f, 0f, 0f, 0f), 0);
var theme = HudTheme.Get();
if (theme != null) theme.ApplyBody(b.style);
return b;
}