-
Notifications
You must be signed in to change notification settings - Fork 0
/
Colors.h
23 lines (20 loc) · 1.08 KB
/
Colors.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once
#include "ImGuiHeader.h"
namespace HanabiColor {
constexpr ImU32 ClickGuiLeftPanel = IM_COL32(4, 0, 0, 255);
constexpr ImU32 ClickGuiLeftPanelSmall = IM_COL32(60, 115, 205, 255);
constexpr ImU32 CategorySelected = IM_COL32(48, 115, 241, 255);
constexpr ImU32 CategoryDefault = IM_COL32(233, 248, 254, 255);
constexpr ImU32 MainPanelFont = IM_COL32(91, 91, 91, 255);
constexpr ImU32 ModulePanelBackground = IM_COL32(13, 13, 13, 255);
constexpr ImU32 ModuleSelected = IM_COL32(27, 27, 27, 255);
constexpr ImU32 ModuleSwitchBackground = IM_COL32(38, 38, 38, 255);
constexpr ImU32 ModuleEnabled = IM_COL32(30, 109, 214, 255);
constexpr ImU32 ModuleDisabled = IM_COL32(68, 68, 68, 255);
constexpr ImU32 ValueSeparator = IM_COL32(24, 24, 24, 255);
constexpr ImU32 EnabledListBackground = IM_COL32(17, 17, 27, 245);
constexpr ImU32 EnabledListSmall = IM_COL32(65, 90, 160, 255);
constexpr ImU32 EnabledListModName = IM_COL32(75, 106, 183, 250);
constexpr ImU32 NotificationBackground = IM_COL32(18, 20, 18, 255);
constexpr ImU32 NotificationTitle = IM_COL32(250, 250, 250, 250);
};