Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix solarized fold colors
  • Loading branch information
nyalldawson committed Oct 5, 2020
1 parent bb8cb8b commit ba4906e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgscodeeditor.cpp
Expand Up @@ -352,7 +352,7 @@ QColor QgsCodeEditor::defaultColor( QgsCodeEditor::ColorRole role, const QString
{ColorRole::MatchedBraceBackground, QColor( "#CBCCA3" ) },
{ColorRole::MatchedBraceForeground, QColor( "#586E75" ) },
{ColorRole::Edge, QColor( "#EEE8D5" ) },
{ColorRole::Fold, QColor( "#FDF6E3" ) },
{ColorRole::Fold, QColor( "#EEE8D5" ) },
{ColorRole::Error, QColor( "#DC322F" ) },
},
},
Expand Down Expand Up @@ -388,7 +388,7 @@ QColor QgsCodeEditor::defaultColor( QgsCodeEditor::ColorRole role, const QString
{ColorRole::MatchedBraceBackground, QColor( "#1F4D2C" ) },
{ColorRole::MatchedBraceForeground, QColor( "#839496" ) },
{ColorRole::Edge, QColor( "#586E75" ) },
{ColorRole::Fold, QColor( "#002B36" ) },
{ColorRole::Fold, QColor( "#073642" ) },
{ColorRole::Error, QColor( "#DC322F" ) },
}
}
Expand Down

0 comments on commit ba4906e

Please sign in to comment.