GtkThemeData constructor

GtkThemeData({
  1. required String name,
  2. int theme_fg_color = 0xff,
  3. int theme_text_color = 0xff,
  4. int theme_bg_color = 0xff,
  5. int theme_base_color = 0xff,
  6. int theme_selected_bg_color = 0xff,
  7. int theme_selected_fg_color = 0xff,
  8. int warning_color = 0xff,
  9. int error_color = 0xff,
  10. int success_color = 0xff,
  11. String font = "",
})

Implementation

GtkThemeData({
  required this.name,
  this.theme_fg_color = 0xff,
  this.theme_text_color = 0xff,
  this.theme_bg_color = 0xff,
  this.theme_base_color = 0xff,
  this.theme_selected_bg_color = 0xff,
  this.theme_selected_fg_color = 0xff,
  this.warning_color = 0xff,
  this.error_color = 0xff,
  this.success_color = 0xff,
  this.font = "",
});