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 FocusErrorOutline = 25,
34 Warning = 26,
35 Error = 27,
36 HotbarOutline = 28,
37 ViewportOutline = 29,
38 DisableBackground = 30,
39 DisableOutline = 31,
40 DisableText = 32,
41 DisableFill = 33,
42 Coordinate1 = 34,
43 Coordinate2 = 35,
44 Coordinate3 = 36,
45 ConfirmFill = 37,
46 Confirm1 = 38,
47 Confirm2 = 39,
48 Confirm3 = 40,
49 DestroyFill = 41,
50 Destroy1 = 42,
51 Destroy2 = 43,
52 Destroy3 = 44,
53 InfoFill = 45,
54 Info1 = 46,
55 Info2 = 47,
56 Info3 = 48,
57 Caret = 49,
58 CursorVolumeBorder = 50,
59 CursorVolumeFill = 51,
60 SelectionVolumeBorder = 52,
61 SelectionVolumeFill = 53,
62 SelectionVolumeOutlineBorder = 54,
63 SelectionVolumeOutlineFill = 55,
64 PrefillVolumeBorder = 56,
65 PrefillVolumeFill = 57,
66 PlacementVolumeBorder = 58,
67 PlacementVolumeFill = 59,
68 ControlsGeneralFill = 60,
69 ControlsGeneralHighlight = 61,
70 CoordinateControlX = 62,
71 CoordinateControlY = 63,
72 CoordinateControlZ = 64,
73};
74
75}