diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-07-24 12:24:14 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-07-24 12:24:14 +0200 |
commit | c3cbc274ac6395b083bea465404ed58f62136194 (patch) | |
tree | a5739a7cdd6befb02805db215b22cb6e0a256fcd | |
parent | 9d38907e95dac76a6b9754562752c36e3f65b9ec (diff) | |
download | nextpnr-c3cbc274ac6395b083bea465404ed58f62136194.tar.gz nextpnr-c3cbc274ac6395b083bea465404ed58f62136194.tar.bz2 nextpnr-c3cbc274ac6395b083bea465404ed58f62136194.zip |
Change G_FRAME color to be significantly darker than G_ACTIVE
Signed-off-by: Clifford Wolf <clifford@clifford.at>
-rw-r--r-- | gui/fpgaviewwidget.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/fpgaviewwidget.cc b/gui/fpgaviewwidget.cc index cd288deb..7ccb3445 100644 --- a/gui/fpgaviewwidget.cc +++ b/gui/fpgaviewwidget.cc @@ -246,7 +246,7 @@ FPGAViewWidget::FPGAViewWidget(QWidget *parent) { colors_.background = QColor("#000000"); colors_.grid = QColor("#333"); - colors_.frame = QColor("#d0d0d0"); + colors_.frame = QColor("#808080"); colors_.hidden = QColor("#606060"); colors_.inactive = QColor("#303030"); colors_.active = QColor("#f0f0f0"); |