fix(GUI): Default background semi transparent

This commit is contained in:
Yimura 2021-01-16 13:53:14 +01:00
parent b511a2717d
commit c0c3547e55

View File

@ -19,7 +19,7 @@ namespace big
{
void gui::dx_init()
{
static ImVec4 bgColor = ImVec4(0.105f, 0.1f, 0.1f, 1.00f);
static ImVec4 bgColor = ImVec4(0.105f, 0.1f, 0.1f, .75f);
static ImVec4 primary = ImVec4(0.117f, 0.529f, 0.941f, 1.f);
static ImVec4 secondary = ImVec4(0.156f, 0.647f, 0.97f, 1.f);
static ImVec4 whiteBroken = ImVec4(.972f, .972f, .972f, 1.f);