@@ -328,6 +328,9 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
328328 theme->set_constant (" check_v_offset" , " CheckBox" , 0 );
329329 theme->set_constant (" outline_size" , " CheckBox" , 0 );
330330
331+ theme->set_color (" checkbox_checked_color" , " CheckBox" , Color (1 , 1 , 1 ));
332+ theme->set_color (" checkbox_unchecked_color" , " CheckBox" , Color (1 , 1 , 1 ));
333+
331334 // CheckButton
332335
333336 Ref<StyleBox> cb_empty = memnew (StyleBoxEmpty);
@@ -365,6 +368,9 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
365368 theme->set_constant (" check_v_offset" , " CheckButton" , 0 );
366369 theme->set_constant (" outline_size" , " CheckButton" , 0 );
367370
371+ theme->set_color (" button_checked_color" , " CheckButton" , Color (1 , 1 , 1 ));
372+ theme->set_color (" button_unchecked_color" , " CheckButton" , Color (1 , 1 , 1 ));
373+
368374 // Button variations
369375
370376 theme->set_type_variation (SceneStringName (FlatButton), " Button" );
0 commit comments