mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 19:23:04 +02:00
Update JSConsole colors
This commit is contained in:
parent
4a0a9f8a36
commit
44c5e56a4b
2 changed files with 9 additions and 9 deletions
|
@ -4,17 +4,17 @@
|
|||
}
|
||||
|
||||
#promptTextEdit {
|
||||
color: rgb(117, 133, 140);
|
||||
color: #425d72;
|
||||
}
|
||||
|
||||
#promptTextEdit:!enabled {
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
color: #7f7f7f;
|
||||
}
|
||||
|
||||
#promptGutterLabel {
|
||||
color: rgba(117, 133, 140);
|
||||
color: #a9bbc3;
|
||||
}
|
||||
|
||||
#promptGutterLabel:!enabled {
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
color: #7f7f7f;
|
||||
}
|
||||
|
|
|
@ -21,13 +21,13 @@
|
|||
const int NO_CURRENT_HISTORY_COMMAND = -1;
|
||||
const int MAX_HISTORY_SIZE = 64;
|
||||
|
||||
const QString COMMAND_STYLE = "color: rgb(38, 106, 155);";
|
||||
const QString COMMAND_STYLE = "color: #266a9b;";
|
||||
|
||||
const QString RESULT_SUCCESS_STYLE = "color: rgb(103, 115, 115);";
|
||||
const QString RESULT_ERROR_STYLE = "color: rgb(209, 59, 34);";
|
||||
const QString RESULT_SUCCESS_STYLE = "color: #677373;";
|
||||
const QString RESULT_ERROR_STYLE = "color: #d13b22;";
|
||||
|
||||
const QString GUTTER_PREVIOUS_COMMAND = "<span style=\"color: rgb(87, 184, 187);\"><</span>";
|
||||
const QString GUTTER_ERROR = "<span style=\"color: rgb(209, 59, 34);\">X</span>";
|
||||
const QString GUTTER_PREVIOUS_COMMAND = "<span style=\"color: #57b8bb;\"><</span>";
|
||||
const QString GUTTER_ERROR = "<span style=\"color: #d13b22;\">X</span>";
|
||||
|
||||
JSConsole::JSConsole(QWidget* parent, ScriptEngine* scriptEngine) :
|
||||
QWidget(parent),
|
||||
|
|
Loading…
Reference in a new issue