Description:
Add alternate aesthetic.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -9,6 +9,7 | |||||
|
9 | { |
|
9 | { |
|
10 | public static class StyleSets |
|
10 | public static class StyleSets |
|
11 | { |
|
11 | { |
|
|
12 | public static Num.Vector4 lightgrey = new Num.Vector4(0.9f, 0.9f, 0.9f, 1f); | ||
|
12 | public static Num.Vector4 grey = new Num.Vector4(0.75f, 0.75f, 0.75f, 1f); |
|
13 | public static Num.Vector4 grey = new Num.Vector4(0.75f, 0.75f, 0.75f, 1f); |
|
13 | public static Num.Vector4 grey_transparent = new Num.Vector4(0.75f, 0.75f, 0.75f, 0.25f); |
|
14 | public static Num.Vector4 grey_transparent = new Num.Vector4(0.75f, 0.75f, 0.75f, 0.25f); |
|
14 | public static Num.Vector4 darkgrey = new Num.Vector4(0.45f, 0.45f, 0.45f, 1f); |
|
15 | public static Num.Vector4 darkgrey = new Num.Vector4(0.45f, 0.45f, 0.45f, 1f); |
@@ -60,7 +61,38 | |||||
|
60 | {ImGuiCol.Text, black} |
|
61 | {ImGuiCol.Text, black} |
|
61 | }; |
|
62 | }; |
|
62 |
|
63 | ||
|
63 | public static StyleSet defaultSet = new StyleSet(defaultWindowVars, defaultWindowColors); |
|
64 | public static Dictionary<ImGuiCol, Num.Vector4> defaultWindowColorsLight = new Dictionary<ImGuiCol, Num.Vector4> { |
|
|
65 | {ImGuiCol.WindowBg, lightgrey}, | ||
|
|
66 | {ImGuiCol.FrameBg, lightgrey}, | ||
|
|
67 | {ImGuiCol.FrameBgHovered, lightgrey}, | ||
|
|
68 | {ImGuiCol.Header, darkgrey}, | ||
|
|
69 | {ImGuiCol.HeaderHovered, darkgrey}, | ||
|
|
70 | {ImGuiCol.HeaderActive, darkgrey}, | ||
|
|
71 | {ImGuiCol.ButtonHovered, lightgrey}, | ||
|
|
72 | {ImGuiCol.ButtonActive, darkgrey}, | ||
|
|
73 | {ImGuiCol.SliderGrab, darkgrey}, | ||
|
|
74 | {ImGuiCol.SliderGrabActive, darkgrey}, | ||
|
|
75 | |||
|
|
76 | |||
|
|
77 | {ImGuiCol.Tab, darkgrey}, | ||
|
|
78 | {ImGuiCol.TabHovered, darkgrey}, | ||
|
|
79 | {ImGuiCol.TabActive, selected}, | ||
|
|
80 | |||
|
|
81 | {ImGuiCol.CheckMark, black}, | ||
|
|
82 | |||
|
|
83 | {ImGuiCol.TitleBg, title_bar}, | ||
|
|
84 | {ImGuiCol.TitleBgActive, selected}, | ||
|
|
85 | {ImGuiCol.TitleBgCollapsed, title_bar}, | ||
|
|
86 | |||
|
|
87 | {ImGuiCol.Border, black}, | ||
|
|
88 | {ImGuiCol.BorderShadow, black}, | ||
|
|
89 | |||
|
|
90 | {ImGuiCol.PopupBg, white}, | ||
|
|
91 | |||
|
|
92 | {ImGuiCol.Button, grey_transparent}, | ||
|
|
93 | {ImGuiCol.Text, black} | ||
|
|
94 | }; | ||
|
|
95 | public static StyleSet defaultSet = new StyleSet(defaultWindowVars, defaultWindowColors); | ||
|
64 | } |
|
96 | } |
|
65 |
|
97 | ||
|
66 | } |
|
98 | } |
You need to be logged in to leave comments.
Login now