New UI palette
|
Before Width: | Height: | Size: 782 B After Width: | Height: | Size: 405 B |
|
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 83 B |
|
Before Width: | Height: | Size: 139 B After Width: | Height: | Size: 88 B |
|
Before Width: | Height: | Size: 120 B After Width: | Height: | Size: 78 B |
|
Before Width: | Height: | Size: 199 B After Width: | Height: | Size: 120 B |
|
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 118 B |
|
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 83 B |
|
Before Width: | Height: | Size: 143 B After Width: | Height: | Size: 91 B |
|
Before Width: | Height: | Size: 125 B After Width: | Height: | Size: 81 B |
|
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 120 B |
|
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 201 B |
|
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 205 B |
|
Before Width: | Height: | Size: 191 B After Width: | Height: | Size: 111 B |
|
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 136 B |
|
Before Width: | Height: | Size: 207 B After Width: | Height: | Size: 124 B |
|
Before Width: | Height: | Size: 207 B After Width: | Height: | Size: 120 B |
|
Before Width: | Height: | Size: 228 B After Width: | Height: | Size: 135 B |
|
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 135 B |
|
Before Width: | Height: | Size: 174 B After Width: | Height: | Size: 175 B |
|
Before Width: | Height: | Size: 92 B After Width: | Height: | Size: 94 B |
|
Before Width: | Height: | Size: 244 B After Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 136 B After Width: | Height: | Size: 133 B |
|
Before Width: | Height: | Size: 137 B |
|
Before Width: | Height: | Size: 137 B |
|
Before Width: | Height: | Size: 132 B |
|
Before Width: | Height: | Size: 136 B After Width: | Height: | Size: 133 B |
|
Before Width: | Height: | Size: 112 B After Width: | Height: | Size: 112 B |
|
Before Width: | Height: | Size: 136 B After Width: | Height: | Size: 136 B |
|
Before Width: | Height: | Size: 141 B After Width: | Height: | Size: 141 B |
|
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 124 B |
|
Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 230 B |
|
Before Width: | Height: | Size: 184 B After Width: | Height: | Size: 115 B |
|
Before Width: | Height: | Size: 155 B After Width: | Height: | Size: 95 B |
|
Before Width: | Height: | Size: 167 B After Width: | Height: | Size: 103 B |
|
Before Width: | Height: | Size: 157 B After Width: | Height: | Size: 104 B |
|
Before Width: | Height: | Size: 194 B After Width: | Height: | Size: 125 B |
|
Before Width: | Height: | Size: 219 B After Width: | Height: | Size: 326 B |
|
Before Width: | Height: | Size: 143 B After Width: | Height: | Size: 142 B |
|
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 392 B |
|
Before Width: | Height: | Size: 125 B After Width: | Height: | Size: 211 B |
|
Before Width: | Height: | Size: 167 B After Width: | Height: | Size: 106 B |
|
Before Width: | Height: | Size: 250 B After Width: | Height: | Size: 154 B |
|
Before Width: | Height: | Size: 123 B After Width: | Height: | Size: 123 B |
|
Before Width: | Height: | Size: 123 B After Width: | Height: | Size: 123 B |
|
Before Width: | Height: | Size: 553 B After Width: | Height: | Size: 560 B |
|
Before Width: | Height: | Size: 551 B After Width: | Height: | Size: 557 B |
@@ -3,6 +3,11 @@ precision mediump float;
|
|||||||
precision mediump int;
|
precision mediump int;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define p1 vec3(255.0,211.0,127.0)/255.0
|
||||||
|
#define p2 vec3(234.0,182.0,120.0)/255.0
|
||||||
|
#define p3 vec3(212.0,129.0,107.0)/255.0
|
||||||
|
#define p4 vec3(142.0,77.0,72.0)/255.0
|
||||||
|
|
||||||
uniform sampler2D u_texture;
|
uniform sampler2D u_texture;
|
||||||
uniform vec2 u_resolution;
|
uniform vec2 u_resolution;
|
||||||
uniform int u_time;
|
uniform int u_time;
|
||||||
@@ -26,8 +31,12 @@ void main() {
|
|||||||
float d = (abs(float(coords.x)) - abs(float(coords.y)));
|
float d = (abs(float(coords.x)) - abs(float(coords.y)));
|
||||||
|
|
||||||
float m = abs(sin(-float(u_time)/50.0 + d/120.0));
|
float m = abs(sin(-float(u_time)/50.0 + d/120.0));
|
||||||
m = float(int(m / roundm)) * roundm + roundm;
|
|
||||||
|
|
||||||
gl_FragColor.rgb = mix(v_color.rgb, vec3(0.0), m);
|
if(m > 0.95) gl_FragColor.rgb = p1;
|
||||||
|
else if(m > 0.75) gl_FragColor.rgb = p2;
|
||||||
|
else if(m > 0.55) gl_FragColor.rgb = p3;
|
||||||
|
else if(m > 0.35) gl_FragColor.rgb = p4;
|
||||||
|
else gl_FragColor.rgb = vec3(0.0);
|
||||||
|
|
||||||
gl_FragColor.a = mod(abs(float(coords.x)) + abs(float(coords.y)), 110.0) < 35.0 ? 1.0 : 0.0;
|
gl_FragColor.a = mod(abs(float(coords.x)) + abs(float(coords.y)), 110.0) < 35.0 ? 1.0 : 0.0;
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 100 KiB |
@@ -71,12 +71,12 @@ ImageButtonStyle: {
|
|||||||
ScrollPaneStyle: {
|
ScrollPaneStyle: {
|
||||||
default: {background: border, vScroll: scroll, vScrollKnob: scroll-knob-vertical-black},
|
default: {background: border, vScroll: scroll, vScrollKnob: scroll-knob-vertical-black},
|
||||||
horizontal: {background: border, vScroll: scroll, vScrollKnob: scroll-knob-vertical, hScroll: scroll-horizontal, hScrollKnob: scroll-knob-horizontal},
|
horizontal: {background: border, vScroll: scroll, vScrollKnob: scroll-knob-vertical, hScroll: scroll-horizontal, hScrollKnob: scroll-knob-horizontal},
|
||||||
volume: {background: button-map, vScroll: scroll, vScrollKnob: scroll-knob-vertical-black},
|
volume: {background: button, vScroll: scroll, vScrollKnob: scroll-knob-vertical-black},
|
||||||
clear: {vScroll: scroll, vScrollKnob: scroll-knob-vertical-black},
|
clear: {vScroll: scroll, vScrollKnob: scroll-knob-vertical-black},
|
||||||
clear-black: {vScroll: scroll, vScrollKnob: scroll-knob-vertical-black}
|
clear-black: {vScroll: scroll, vScrollKnob: scroll-knob-vertical-black}
|
||||||
},
|
},
|
||||||
WindowStyle: {
|
WindowStyle: {
|
||||||
default: {titleFont: default-font, background: window, titleFontColor: accent },
|
default: {titleFont: default-font, titleFontColor: accent },
|
||||||
dialog: {stageBackground: dialogDim, titleFont: default-font, background: window-empty, titleFontColor: accent }
|
dialog: {stageBackground: dialogDim, titleFont: default-font, background: window-empty, titleFontColor: accent }
|
||||||
},
|
},
|
||||||
KeybindDialogStyle: {
|
KeybindDialogStyle: {
|
||||||
|
|||||||
@@ -43,8 +43,8 @@ public class Palette{
|
|||||||
|
|
||||||
heal = Color.valueOf("98ffa9"),
|
heal = Color.valueOf("98ffa9"),
|
||||||
bar = Color.SLATE,
|
bar = Color.SLATE,
|
||||||
accent = Color.valueOf("f4ba6e"),
|
accent = Color.valueOf("ffd37f"),
|
||||||
accentBack = Color.valueOf("d58c4b"),
|
accentBack = Color.valueOf("d4816b"),
|
||||||
place = Color.valueOf("6335f8"),
|
place = Color.valueOf("6335f8"),
|
||||||
remove = Color.valueOf("e55454"),
|
remove = Color.valueOf("e55454"),
|
||||||
removeBack = Color.valueOf("a73e3e"),
|
removeBack = Color.valueOf("a73e3e"),
|
||||||
|
|||||||