If i am setting GtkEventBox bg color to some custom color on some event like button click.
// Set Window Background color
GdkColor color;
gdk_color_parse("red", &color);
gtk_widget_modify_bg(GTK_WIDGET(myEvtBox), GTK_STATE_NORMAL, &color);
and after another click i need to restore it to original state/color how to do this?
do i need to remember default color of that widget's state?