From e1f57bcbc50a8d12f5a425f9177c00a623b22f7b Mon Sep 17 00:00:00 2001 From: Erik Verbruggen <erik.verbruggen@nokia.com> Date: Wed, 19 May 2010 14:32:29 +0200 Subject: [PATCH] Tune down the colors of the Application Output pane a bit. Reviewed-by: con --- src/plugins/projectexplorer/outputformatter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/projectexplorer/outputformatter.cpp b/src/plugins/projectexplorer/outputformatter.cpp index 5ddfa51f135..0cb8b7ea5a7 100644 --- a/src/plugins/projectexplorer/outputformatter.cpp +++ b/src/plugins/projectexplorer/outputformatter.cpp @@ -105,11 +105,11 @@ void OutputFormatter::initFormats() // NormalMessageFormat m_formats[NormalMessageFormat].setFont(boldFont); - m_formats[NormalMessageFormat].setForeground(QColor(Qt::black)); + m_formats[NormalMessageFormat].setForeground(QColor(Qt::blue)); // ErrorMessageFormat m_formats[ErrorMessageFormat].setFont(boldFont); - m_formats[ErrorMessageFormat].setForeground(QColor(Qt::red)); + m_formats[ErrorMessageFormat].setForeground(QColor(200, 0, 0)); // StdOutFormat m_formats[StdOutFormat].setFont(font); @@ -117,7 +117,7 @@ void OutputFormatter::initFormats() // StdErrFormat m_formats[StdErrFormat].setFont(font); - m_formats[StdErrFormat].setForeground(QColor(Qt::red)); + m_formats[StdErrFormat].setForeground(QColor(200, 0, 0)); } void OutputFormatter::setFormat(Format theFormat) const -- GitLab