NcEngine
ImGuiStyle.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "ncmath/Vector.h"
8
9namespace nc::ui
10{
13
14namespace color
15{
16constexpr auto Black = Vector4{0.04f, 0.04f, 0.04f, 1.000f};
17constexpr auto White = Vector4{1.000f, 1.000f, 1.000f, 1.000f};
18constexpr auto Clear = Vector4{0.000f, 0.000f, 0.000f, 0.000f};
19constexpr auto Red = Vector4{1.000f, 0.200f, 0.100f, 1.000f};
20constexpr auto Green = Vector4{0.000f, 1.000f, 0.000f, 1.000f};
21constexpr auto Blue = Vector4{0.000f, 0.400f, 1.000f, 1.000f};
22} // namespace color
23
24namespace default_scheme
25{
26constexpr auto Title = color::Black;
27constexpr auto Border = color::Black;
28constexpr auto Text = color::White;
29constexpr auto Button = Vector4{0.05f, 0.05f, 0.05f, 1.0f};
30constexpr auto Separator = Vector4{0.410f, 0.410f, 0.410f, 0.500f};
31constexpr auto Tabs = Vector4{0.072f, 0.072f, 0.072f, 0.750f};
32constexpr auto WindowBG = Vector4{0.128f, 0.128f, 0.128f, 0.750f};
33constexpr auto ChildBG = Vector4{0.145f, 0.145f, 0.145f, 0.750f};
34constexpr auto PopupBG = Vector4{0.128f, 0.128f, 0.128f, 1.000f};
35constexpr auto ScrollBarBG = Vector4{0.117f, 0.117f, 0.117f, 0.530f};
36constexpr auto DimBg = Vector4{0.740f, 0.740f, 0.740f, 0.350f};
37constexpr auto WindowHighlight = Vector4{1.000f, 1.000f, 1.000f, 0.700f};
38constexpr auto Active = Vector4{0.610f, 0.610f, 0.610f, 0.390f};
39constexpr auto Hovered = Vector4{0.0f, 0.0f, 0.0f, 0.590f};
40constexpr auto Disabled = Vector4{0.348f, 0.348f, 0.348f, 1.000f};
41constexpr auto Accent = Vector4{0.000f, 0.490f, 0.000f, 1.000f};
42constexpr auto AccentActive = Vector4{0.000f, 0.729f, 0.000f, 1.000f};
43constexpr auto AccentTrans = Vector4{0.000f, 0.990f, 0.000f, 0.050f};
44constexpr auto AccentDim = Vector4{0.000f, 0.447f, 0.000f, 0.750f};
45} // namespace default_scheme
46} // namespace nc::ui
void SetDefaultUIStyle()
Set ImGUi style using values from 'default_scheme'.
A four component vector.
Definition: Vector.h:48