From 0955d451cd2073eddce6dbb70ec14ddd238d3dfa Mon Sep 17 00:00:00 2001 From: Diavolo Date: Thu, 21 Apr 2022 20:37:14 +0200 Subject: [PATCH] Fix color --- src/Components/Modules/Branding.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/Modules/Branding.cpp b/src/Components/Modules/Branding.cpp index cb713665..a5a4c954 100644 --- a/src/Components/Modules/Branding.cpp +++ b/src/Components/Modules/Branding.cpp @@ -13,8 +13,8 @@ namespace Components constexpr auto fontScale = 0.25f; constexpr auto maxChars = std::numeric_limits::max(); // Default colours - constexpr Game::vec4_t shadowColor = {0.0f, 0.0f, 0.0f, 0.7f}; - constexpr Game::vec4_t color = {0.4f, 0.7f, 1.0f, 0.7f}; + constexpr Game::vec4_t shadowColor = {0.0f, 0.0f, 0.0f, 0.69f}; + constexpr Game::vec4_t color = {0.4f, 0.69f, 1.0f, 0.69f}; auto* const placement = Game::ScrPlace_GetUnsafeFullPlacement(); auto* const font = Game::UI_GetFontHandle(placement, 0, 0.5f);