586Color RenderThemeGtk::systemColor(int cssValueId) const
587{
588 GtkWidget* widget = gtkEntry();
589 switch (cssValueId) {
590 case CSSValueButtontext:
591 return Color(widget->style->fg[GTK_STATE_NORMAL]);
592 default:
593 return RenderTheme::systemColor(cssValueId);
594 }
595}
596