Merge pull request #1932 from defnax/enable-additional-colors-for-syntax-higlighting

Enable the additional colors for the highlighting
This commit is contained in:
defnax 2020-05-12 22:07:26 +02:00 committed by GitHub
commit 30116598ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 3 deletions

View file

@ -187,6 +187,7 @@ NetworkDialog
RSTextBrowser, MimeTextEdit RSTextBrowser, MimeTextEdit
{ {
qproperty-textColorQuote: rgb(120, 153, 34); qproperty-textColorQuote: rgb(120, 153, 34);
qproperty-textColorQuotes: ColorList(#789922 #039bd5 #800000 #800080 #008080 #b10dc9 #85144b #3d9970);
} }
QLabel#headerTextLabel_Person QLabel#headerTextLabel_Person

View file

@ -2151,6 +2151,6 @@ GxsChannelDialog GroupTreeWidget QTreeWidget#treeWidget::item{
RSTextBrowser, MimeTextEdit RSTextBrowser, MimeTextEdit
{ {
/*qproperty-textColorQuote: rgb(125, 125, 255);*/ qproperty-textColorQuote: rgb(125, 125, 255);
/*qproperty-textColorQuotes: ColorList(#0000ff #00ff00 #00ffff #ff0000 #ff00ff #ffff00 #ffffff);*/ qproperty-textColorQuotes: ColorList(#0000ff #00ff00 #00ffff #ff0000 #ff00ff #ffff00 #ffffff);
} }

View file

@ -1295,3 +1295,9 @@ PostedCardView > QFrame#mainFrame[new=true] {
WireGroupItem QFrame#frame{ WireGroupItem QFrame#frame{
background: transparent; background: transparent;
} }
RSTextBrowser, MimeTextEdit
{
qproperty-textColorQuote: rgb(125, 125, 255);
qproperty-textColorQuotes: ColorList(#0000ff #00ff00 #00ffff #ff0000 #ff00ff #ffff00 #ffffff);
}