aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/editor/scripteditor.cpp
diff options
context:
space:
mode:
authorGravatar Fabio Bas2010-10-19 16:39:03 +0000
committerGravatar Fabio Bas2010-10-19 16:39:03 +0000
commit2371d4516577c2887fbe1a735b2293e75597a989 (patch)
tree3fb3bc34d59737a0dc8bfc82d4c618f95e721e68 /src/modules/editor/scripteditor.cpp
parentfix for #976 (diff)
downloadKVIrc-2371d4516577c2887fbe1a735b2293e75597a989.tar.gz
KVIrc-2371d4516577c2887fbe1a735b2293e75597a989.tar.bz2
KVIrc-2371d4516577c2887fbe1a735b2293e75597a989.zip
merged egns's patch to enable painless msvc compilation, thank you!
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5091 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/editor/scripteditor.cpp')
-rw-r--r--src/modules/editor/scripteditor.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/editor/scripteditor.cpp b/src/modules/editor/scripteditor.cpp
index 6a1b4a56d..2d5a47ea0 100644
--- a/src/modules/editor/scripteditor.cpp
+++ b/src/modules/editor/scripteditor.cpp
@@ -63,14 +63,14 @@ extern KviPointerList<KviScriptEditorImplementation> * g_pScriptEditorWindowList
extern KviModule * g_pEditorModulePointer;
static QColor g_clrBackground(0,0,0);
-static QColor g_clrNormalText(100,100,100);
+static QColor g_clrNormalText(100,255,0);
static QColor g_clrBracket(255,0,0);
static QColor g_clrComment(0,120,0);
-static QColor g_clrFunction(0,17,255);
-static QColor g_clrKeyword(85,85,255);
-static QColor g_clrVariable(255,0,0);
+static QColor g_clrFunction(255,255,0);
+static QColor g_clrKeyword(120,120,150);
+static QColor g_clrVariable(200,200,200);
static QColor g_clrPunctuation(180,180,0);
-static QColor g_clrFind(0,0,0);
+static QColor g_clrFind(255,0,0);
#if defined(COMPILE_ON_WINDOWS) || defined(COMPILE_ON_MINGW)
#define KVI_SCRIPTEDITOR_DEFAULT_FONT "Courier New"