X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fuistyle.cpp;h=8c3afaab4dc470a0d37a3882668c27e0db272a48;hb=adc222822ec7d872f2bcc0ca384e6ec5fd777287;hp=e14208b467a1ae19758b7964e42f80ec5ccb5f3f;hpb=70706ff642683d03ff091cab25d984ec7d9612de;p=quassel.git diff --git a/src/uisupport/uistyle.cpp b/src/uisupport/uistyle.cpp index e14208b4..8c3afaab 100644 --- a/src/uisupport/uistyle.cpp +++ b/src/uisupport/uistyle.cpp @@ -23,15 +23,17 @@ UiStyle::UiStyle() { // Default format QTextCharFormat def; - def.setForeground(QBrush("black")); + def.setForeground(QBrush("#000000")); def.setFont(QFont("Verdana",9)); _formats = QVector(NumFormatTypes, def); // Initialize color codes according to mIRC "standard" QStringList colors; - colors << "white" << "black" << "navy" << "green" << "red" << "maroon" << "purple" << "orange"; - colors << "yellow" << "lime" << "teal" << "aqua" << "royalblue" << "fuchsia" << "grey" << "silver"; + //colors << "white" << "black" << "navy" << "green" << "red" << "maroon" << "purple" << "orange"; + //colors << "yellow" << "lime" << "teal" << "aqua" << "royalblue" << "fuchsia" << "grey" << "silver"; + colors << "#ffffff" << "#000000" << "#000080" << "#008000" << "#ff0000" << "#800000" << "#800080" << "#ffa500"; + colors << "#ffff00" << "#00ff00" << "#008080" << "#00ffff" << "#4169E1" << "#ff00ff" << "#808080" << "#c0c0c0"; // Now initialize the mapping between FormatCodes and FormatTypes... _formatCodes["%O"] = None;