make colours more consistent
Before Width: | Height: | Size: 155 B After Width: | Height: | Size: 155 B |
Before Width: | Height: | Size: 188 B After Width: | Height: | Size: 188 B |
Before Width: | Height: | Size: 175 B After Width: | Height: | Size: 172 B |
Before Width: | Height: | Size: 223 B After Width: | Height: | Size: 221 B |
Before Width: | Height: | Size: 300 B After Width: | Height: | Size: 301 B |
Before Width: | Height: | Size: 168 B After Width: | Height: | Size: 168 B |
Before Width: | Height: | Size: 168 B After Width: | Height: | Size: 169 B |
Before Width: | Height: | Size: 111 B After Width: | Height: | Size: 111 B |
Before Width: | Height: | Size: 110 B After Width: | Height: | Size: 110 B |
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 124 B |
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 125 B |
|
@ -183,7 +183,14 @@ pub fn texture_option_button<T>(
|
||||||
width: tex_size + border * 2.,
|
width: tex_size + border * 2.,
|
||||||
height: tex_size + border * 2.,
|
height: tex_size + border * 2.,
|
||||||
};
|
};
|
||||||
d.draw_rectangle_rec(bounds, widget_bg(&option == current));
|
d.draw_rectangle_rec(
|
||||||
|
bounds,
|
||||||
|
if &option == current {
|
||||||
|
BG_WIDGET_ACTIVE
|
||||||
|
} else {
|
||||||
|
gray(16)
|
||||||
|
},
|
||||||
|
);
|
||||||
d.draw_texture_ex(
|
d.draw_texture_ex(
|
||||||
texture,
|
texture,
|
||||||
pos + Vector2::new(border, border),
|
pos + Vector2::new(border, border),
|
||||||
|
|