-
Notifications
You must be signed in to change notification settings - Fork 6
/
imgui_settings.h
71 lines (52 loc) · 1.41 KB
/
imgui_settings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include "imgui.h"
namespace font
{
inline ImFont* icomoon = nullptr;
inline ImFont* lexend_bold = nullptr;
inline ImFont* lexend_regular = nullptr;
inline ImFont* lexend_general_bold = nullptr;
inline ImFont* icomoon_widget = nullptr;
inline ImFont* icomoon_widget2 = nullptr;
}
namespace c
{
namespace other
{
static int notify_select = 0;
}
namespace tab
{
static float tab_alpha = 0.f;
static float tab_add;
static int active_tab = 0;
}
inline ImVec4 accent = ImColor(114, 149, 255);
namespace background
{
inline ImVec4 filling = ImColor(21, 25, 24);
inline ImVec4 stroke = ImColor(26, 30, 29);
inline ImVec2 size = ImVec2(650, 450);
inline float rounding = 6;
}
namespace elements
{
inline ImVec4 mark = ImColor(255, 255, 255);
inline ImVec4 stroke = ImColor(21, 25, 24);
inline ImVec4 background = ImColor(21, 25, 24);
inline ImVec4 background_widget = ImColor(26, 30, 29);
inline ImVec4 background_rect = ImColor(29, 33, 32);
inline ImVec4 text_active = ImColor(255, 255, 255);
inline ImVec4 text_hov = ImColor(114, 149, 255);
inline ImVec4 text = ImColor(81, 85, 84);
inline float rounding = 4;
}
namespace child
{
}
namespace tab
{
inline ImVec4 tab_active = ImColor(26, 30, 29);
inline ImVec4 tab_active_rect = ImColor(29, 33, 32);
inline ImVec4 border = ImColor(26, 30, 29);
}
}