Skip to content

Commit

Permalink
FIX: Simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Apr 8, 2022
1 parent 5217be3 commit ab146bf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mne/viz/backends/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,16 +217,19 @@ def _qt_get_stylesheet(theme):
# Taken using "Digital Color Meter" on macOS 12.2.1 looking at
# Meld, and also adapting (MIT-licensed)
# https://github.com/ColinDuquesnoy/QDarkStyleSheet/blob/master/qdarkstyle/dark/style.qss # noqa: E501
# Something around rgb(51, 51, 51) worked as the bgcolor here,
# but it's easy enough just to set it transparent and inherit
# the bgcolor of the window (which is the same)
stylesheet = """\
QStatusBar {
border: 1px solid rgb(76, 76, 75);
background: rgb(51, 51, 51);
background: transparent;
}
QStatusBar QLabel {
background: transparent;
}
QToolBar {
background-color: rgb(53, 53, 53);
background-color: transparent;
border-bottom: 1px solid rgb(99, 99, 99);
}
"""
Expand Down

0 comments on commit ab146bf

Please sign in to comment.