Present to the eyes.

* src/frontends/qt4/QLog.C
	(logHighlighter::logHighlighter): Use a darker gray.

	* src/frontends/qt4/QViewSource.C
	(latexHighlighter::latexHighlighter): Ditto.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17604 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2007-03-28 00:26:04 +00:00
parent 33707ecc13
commit 151b065b45
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ QLog::QLog(Dialog & parent)
logHighlighter::logHighlighter(QTextDocument * parent) :
QSyntaxHighlighter(parent)
{
infoFormat.setForeground(Qt::gray);
infoFormat.setForeground(Qt::darkGray);
warningFormat.setForeground(Qt::darkBlue);
errorFormat.setForeground(Qt::red);
}

View File

@ -25,7 +25,7 @@ latexHighlighter::latexHighlighter(QTextDocument * parent) :
{
keywordFormat.setForeground(Qt::darkBlue);
keywordFormat.setFontWeight(QFont::Bold);
commentFormat.setForeground(Qt::gray);
commentFormat.setForeground(Qt::darkGray);
mathFormat.setForeground(Qt::red);
}