|
5 | 5 |
|
6 | 6 | namespace Chained |
7 | 7 | { |
8 | | -namespace EditorColors |
9 | | -{ |
10 | | -// Toolbar & buttons |
11 | | -inline constexpr ImVec4 TransparentButton = {0.1f, 0.1f, 0.1f, 0.0f}; |
12 | | -inline constexpr ImVec4 ActiveToolOrange = {0.9f, 0.45f, 0.0f, 1.0f}; |
13 | | -inline constexpr ImVec4 PlayGreen = {0.3f, 1.0f, 0.3f, 1.0f}; |
14 | | -inline constexpr ImVec4 SimulateOrange = {1.0f, 0.64f, 0.0f, 1.0f}; |
15 | | -inline constexpr ImVec4 ActiveSnapBlue = {0.3f, 0.8f, 1.0f, 1.0f}; |
| 8 | + namespace EditorColors |
| 9 | + { |
| 10 | + // Toolbar & buttons |
| 11 | + inline constexpr ImVec4 TransparentButton = {0.1f, 0.1f, 0.1f, 0.0f}; |
| 12 | + inline constexpr ImVec4 ActiveToolOrange = {0.9f, 0.45f, 0.0f, 1.0f}; |
| 13 | + inline constexpr ImVec4 PlayGreen = {0.3f, 1.0f, 0.3f, 1.0f}; |
| 14 | + inline constexpr ImVec4 SimulateOrange = {1.0f, 0.64f, 0.0f, 1.0f}; |
| 15 | + inline constexpr ImVec4 ActiveSnapBlue = {0.3f, 0.8f, 1.0f, 1.0f}; |
16 | 16 |
|
17 | | -// Panel backgrounds |
18 | | -inline constexpr ImVec4 ToolbarBg = {0.1f, 0.1f, 0.12f, 0.8f}; |
19 | | -inline constexpr ImVec4 FloatingToolbarBg = {0.1f, 0.1f, 0.12f, 0.0f}; |
| 17 | + // Panel backgrounds |
| 18 | + inline constexpr ImVec4 ToolbarBg = {0.1f, 0.1f, 0.12f, 0.8f}; |
| 19 | + inline constexpr ImVec4 FloatingToolbarBg = {0.1f, 0.1f, 0.12f, 0.0f}; |
20 | 20 |
|
21 | | -// Selection & highlights |
22 | | -inline constexpr ImVec4 SelectionYellow = {1.0f, 1.0f, 0.0f, 1.0f}; |
23 | | -inline constexpr ImVec4 SelectionGreen = {0.0f, 1.0f, 0.0f, 1.0f}; |
| 21 | + // Selection & highlights |
| 22 | + inline constexpr ImVec4 SelectionYellow = {1.0f, 1.0f, 0.0f, 1.0f}; |
| 23 | + inline constexpr ImVec4 SelectionGreen = {0.0f, 1.0f, 0.0f, 1.0f}; |
24 | 24 |
|
25 | | -// Loading overlay |
26 | | -inline constexpr ImVec4 LoadingOverlayBg = {0.02f, 0.02f, 0.02f, 0.92f}; |
| 25 | + // Loading overlay |
| 26 | + inline constexpr ImVec4 LoadingOverlayBg = {0.02f, 0.02f, 0.02f, 0.92f}; |
27 | 27 |
|
28 | | -// Content browser / project selector |
29 | | -inline constexpr ImVec4 SidebarBg = {0.15f, 0.15f, 0.18f, 1.0f}; |
30 | | -inline constexpr ImVec4 DarkPanelBg = {0.02f, 0.02f, 0.02f, 1.0f}; |
31 | | -inline constexpr ImVec4 ProjectCardBg = {0.12f, 0.12f, 0.13f, 1.0f}; |
32 | | -inline constexpr ImVec4 ProjectCardHover = {0.18f, 0.18f, 0.19f, 1.0f}; |
33 | | -inline constexpr ImVec4 ProjectCardActive = {0.1f, 0.1f, 0.1f, 1.0f}; |
34 | | -inline constexpr ImVec4 ProjectCardBorder = {0.18f, 0.18f, 0.20f, 1.0f}; |
35 | | -inline constexpr ImVec4 ProjectCardBorderHover = {0.26f, 0.26f, 0.28f, 1.0f}; |
36 | | -inline constexpr ImVec4 ProjectCardBorderActive = {0.14f, 0.14f, 0.16f, 1.0f}; |
37 | | -inline constexpr ImVec4 SubCardBg = {0.06f, 0.06f, 0.07f, 1.0f}; |
38 | | -inline constexpr ImVec4 SubCardBorder = {0.14f, 0.14f, 0.16f, 1.0f}; |
39 | | -inline constexpr ImVec4 SubCardBorderHover = {0.22f, 0.22f, 0.24f, 1.0f}; |
40 | | -inline constexpr ImVec4 SubCardBorderActive = {0.10f, 0.10f, 0.12f, 1.0f}; |
41 | | -inline constexpr ImVec4 PrimaryButton = {0.13f, 0.45f, 0.80f, 1.0f}; |
42 | | -inline constexpr ImVec4 PrimaryButtonHover = {0.20f, 0.55f, 0.92f, 1.0f}; |
43 | | -inline constexpr ImVec4 PrimaryButtonActive = {0.10f, 0.38f, 0.70f, 1.0f}; |
44 | | -inline constexpr ImVec4 MutedText = {0.5f, 0.5f, 0.5f, 1.0f}; |
45 | | -inline constexpr ImVec4 BrightText = {0.9f, 0.9f, 0.9f, 1.0f}; |
46 | | -} // namespace EditorColors |
| 28 | + // Content browser / project selector |
| 29 | + inline constexpr ImVec4 SidebarBg = {0.15f, 0.15f, 0.18f, 1.0f}; |
| 30 | + inline constexpr ImVec4 DarkPanelBg = {0.02f, 0.02f, 0.02f, 1.0f}; |
| 31 | + inline constexpr ImVec4 ProjectCardBg = {0.12f, 0.12f, 0.13f, 1.0f}; |
| 32 | + inline constexpr ImVec4 ProjectCardHover = {0.18f, 0.18f, 0.19f, 1.0f}; |
| 33 | + inline constexpr ImVec4 ProjectCardActive = {0.1f, 0.1f, 0.1f, 1.0f}; |
| 34 | + inline constexpr ImVec4 ProjectCardBorder = {0.18f, 0.18f, 0.20f, 1.0f}; |
| 35 | + inline constexpr ImVec4 ProjectCardBorderHover = {0.26f, 0.26f, 0.28f, 1.0f}; |
| 36 | + inline constexpr ImVec4 ProjectCardBorderActive = {0.14f, 0.14f, 0.16f, 1.0f}; |
| 37 | + inline constexpr ImVec4 SubCardBg = {0.06f, 0.06f, 0.07f, 1.0f}; |
| 38 | + inline constexpr ImVec4 SubCardBorder = {0.14f, 0.14f, 0.16f, 1.0f}; |
| 39 | + inline constexpr ImVec4 SubCardBorderHover = {0.22f, 0.22f, 0.24f, 1.0f}; |
| 40 | + inline constexpr ImVec4 SubCardBorderActive = {0.10f, 0.10f, 0.12f, 1.0f}; |
| 41 | + inline constexpr ImVec4 PrimaryButton = {0.13f, 0.45f, 0.80f, 1.0f}; |
| 42 | + inline constexpr ImVec4 PrimaryButtonHover = {0.20f, 0.55f, 0.92f, 1.0f}; |
| 43 | + inline constexpr ImVec4 PrimaryButtonActive = {0.10f, 0.38f, 0.70f, 1.0f}; |
| 44 | + inline constexpr ImVec4 MutedText = {0.5f, 0.5f, 0.5f, 1.0f}; |
| 45 | + inline constexpr ImVec4 BrightText = {0.9f, 0.9f, 0.9f, 1.0f}; |
| 46 | + } // namespace EditorColors |
47 | 47 | } // namespace Chained |
48 | 48 |
|
49 | 49 | #endif // CH_EDITOR_COLORS_H |
0 commit comments