mirror of
https://github.com/i3/i3.git
synced 2025-12-01 12:06:20 +00:00
Remove spurious character from hex code (#6500)
Fixes a small mistake in the color hex codes for i3-nagbar, where one of the codes has an extra trailing zero.
This commit is contained in:
@ -503,7 +503,7 @@ int main(int argc, char *argv[]) {
|
|||||||
} else {
|
} else {
|
||||||
/* Yellowish theme for warnings */
|
/* Yellowish theme for warnings */
|
||||||
color_button_background = draw_util_hex_to_color("#ffc100");
|
color_button_background = draw_util_hex_to_color("#ffc100");
|
||||||
color_background = draw_util_hex_to_color("#ffa8000");
|
color_background = draw_util_hex_to_color("#ffa800");
|
||||||
color_text = draw_util_hex_to_color("#000000");
|
color_text = draw_util_hex_to_color("#000000");
|
||||||
color_border = draw_util_hex_to_color("#ab7100");
|
color_border = draw_util_hex_to_color("#ab7100");
|
||||||
color_border_bottom = draw_util_hex_to_color("#ab7100");
|
color_border_bottom = draw_util_hex_to_color("#ab7100");
|
||||||
|
|||||||
Reference in New Issue
Block a user