LeviLamina
Loading...
Searching...
No Matches
ThemeSettingsColorKey.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Settings {
6
7enum class ThemeSettingsColorKey : int {
8 TitleBarBackground = 0,
9 PanelBackground = 1,
10 HeaderBackground = 2,
11 PanelBorder = 3,
12 ElementBorder = 4,
13 PrimaryActive = 5,
14 PrimaryDefault = 6,
15 PrimaryMute = 7,
16 PrimaryDisable = 8,
17 PrimaryBackground1 = 9,
18 PrimaryBackground2 = 10,
19 PrimaryBackground3 = 11,
20 PrimaryBackground4 = 12,
21 SecondaryActive = 13,
22 SecondaryDefault = 14,
23 SecondaryMute = 15,
24 SecondaryDisable = 16,
25 SecondaryBackground1 = 17,
26 SecondaryBackground2 = 18,
27 SecondaryBackground3 = 19,
28 DropDown1 = 20,
29 DropDown2 = 21,
30 DropDown3 = 22,
31 ScrollBar = 23,
32 FocusOutline = 24,
33 Warning = 25,
34 Error = 26,
35 HotbarOutline = 27,
36 ViewportOutline = 28,
37 DisableBackground = 29,
38 DisableOutline = 30,
39 DisableText = 31,
40 DisableFill = 32,
41 Coordinate1 = 33,
42 Coordinate2 = 34,
43 Coordinate3 = 35,
44 ConfirmFill = 36,
45 Confirm1 = 37,
46 Confirm2 = 38,
47 Confirm3 = 39,
48 DestroyFill = 40,
49 Destroy1 = 41,
50 Destroy2 = 42,
51 Destroy3 = 43,
52 InfoFill = 44,
53 Info1 = 45,
54 Info2 = 46,
55 Info3 = 47,
56 Caret = 48,
57 CursorVolumeBorder = 49,
58 CursorVolumeFill = 50,
59 SelectionVolumeBorder = 51,
60 SelectionVolumeFill = 52,
61 PrefillVolumeBorder = 53,
62 PrefillVolumeFill = 54,
63 PlacementVolumeBorder = 55,
64 PlacementVolumeFill = 56,
65 ControlsGeneralFill = 57,
66 ControlsGeneralHighlight = 58,
67 CoordinateControlX = 59,
68 CoordinateControlY = 60,
69 CoordinateControlZ = 61,
70};
71
72}