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:
Michele Piazzai
2025-11-05 07:43:12 +00:00
committed by GitHub
parent 14a84076aa
commit 2711f427af

View File

@ -503,7 +503,7 @@ int main(int argc, char *argv[]) {
} else {
/* Yellowish theme for warnings */
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_border = draw_util_hex_to_color("#ab7100");
color_border_bottom = draw_util_hex_to_color("#ab7100");