Created
March 15, 2018 16:22
-
-
Save levisre/100f43f5a7cd7738b98e690703ee2973 to your computer and use it in GitHub Desktop.
Darken Red Stylesheet for x64dbg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| QToolTip | |
| { | |
| border: none; | |
| outline: none; | |
| background-color: #212121; | |
| padding: 1px; | |
| color: #b1b1b1; | |
| border-radius: 3px; | |
| opacity: 255; | |
| } | |
| QWidget | |
| { | |
| background-color: #212121; | |
| /*background-color: rgb(80,80,80);*/ | |
| color: rgb(220,220,220); | |
| /*font-size: 11px;*/ | |
| border : 1px; | |
| outline: none; | |
| } | |
| QWidget:item:hover | |
| { | |
| background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #750e0e, stop: 1 #ca0619); | |
| color: white; | |
| } | |
| QWidget:item:selected | |
| { | |
| background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #750e0e, stop: 1 #3a0909); | |
| } | |
| QMenuBar::item | |
| { | |
| background: transparent; | |
| } | |
| QMenuBar::item:selected | |
| { | |
| color: white; | |
| background: transparent; | |
| border: none; | |
| outline: none; | |
| } | |
| QMenuBar::item:pressed | |
| { | |
| background: #444; | |
| border: none; | |
| outline: none; | |
| background-color: QLinearGradient( | |
| x1:0, y1:0, | |
| x2:0, y2:1, | |
| stop:1 #212121, | |
| stop:0.4 #343434/*, | |
| stop:0.2 #343434, | |
| stop:0.1 #ffaa00*/ | |
| ); | |
| margin-bottom:-1px; | |
| padding-bottom:1px; | |
| } | |
| QMenu | |
| { | |
| border: none; | |
| outline: none; | |
| } | |
| QMenu::item | |
| { | |
| padding: 2px 20px 2px 20px; | |
| } | |
| QMenu::item:selected | |
| { | |
| color: white; | |
| } | |
| QWidget:disabled | |
| { | |
| color: #404040; | |
| background-color: #323232; | |
| } | |
| QAbstractItemView | |
| { | |
| background-color: #212121; | |
| /*background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #4d4d4d, stop: 0.1 #646464, stop: 1 #5d5d5d);*/ | |
| } | |
| QWidget:focus | |
| { | |
| /*border: 2px solid QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ffa02f, stop: 1 #d7801a);*/ | |
| } | |
| QLineEdit | |
| { | |
| background-color: #212121; | |
| /*background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #4d4d4d, stop: 0 #646464, stop: 1 #5d5d5d);*/ | |
| padding: 1px; | |
| border-style: solid; | |
| border: none; | |
| outline: none; | |
| border-radius: 5; | |
| } | |
| QPushButton { | |
| border: none; | |
| outline: none; | |
| text-align: center; | |
| min-height: 20px; | |
| min-width: 50px; | |
| padding: 0 6px 0 6px; | |
| } | |
| QPushButton:pressed | |
| { | |
| background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #2d2d2d, stop: 0.1 #2b2b2b, stop: 0.5 #292929, stop: 0.9 #282828, stop: 1 #252525); | |
| } | |
| QComboBox | |
| { | |
| selection-background-color: #750e0e; | |
| background-color: #212121; | |
| /*background-color: #212121 QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #565656, stop: 0.1 #525252, stop: 0.5 #4e4e4e, stop: 0.9 #4a4a4a, stop: 1 #464646);*/ | |
| border-style: solid; | |
| border: none; | |
| outline: none; | |
| border-radius: 5; | |
| } | |
| QComboBox:hover,QPushButton:hover | |
| { | |
| border: none; | |
| outline: none; | |
| } | |
| QComboBox:on | |
| { | |
| padding-top: 3px; | |
| padding-left: 4px; | |
| background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #2d2d2d, stop: 0.1 #2b2b2b, stop: 0.5 #292929, stop: 0.9 #282828, stop: 1 #252525); | |
| selection-background-color: #750e0e; | |
| } | |
| QComboBox QAbstractItemView | |
| { | |
| border: none; | |
| outline: none; | |
| selection-background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #750e0e, stop: 1 #3a0909); | |
| } | |
| QComboBox::drop-down | |
| { | |
| subcontrol-origin: padding; | |
| subcontrol-position: top right; | |
| width: 15px; | |
| border-left-width: 0px; | |
| border-left-color: darkgray; | |
| border-left-style: solid; /* just a single line */ | |
| border-top-right-radius: 3px; /* same radius as the QComboBox */ | |
| border-bottom-right-radius: 3px; | |
| } | |
| QComboBox::down-arrow | |
| { | |
| image: url(:/down_arrow.png); | |
| } | |
| QGroupBox:focus | |
| { | |
| border: none; | |
| outline: none; | |
| } | |
| QTextEdit:focus | |
| { | |
| border: none; | |
| outline: none; | |
| } | |
| QScrollBar:horizontal { | |
| border: none; | |
| outline: none; | |
| background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0.0 #121212, stop: 0.2 #282828, stop: 1 #484848); | |
| height: 15px; | |
| margin: 0px 16px 0 16px; | |
| } | |
| QScrollBar::handle:horizontal | |
| { | |
| background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #750e0e, stop: 0.5 #3a0909, stop: 1 #750e0e); | |
| min-height: 15px; | |
| border-radius: 2px; | |
| } | |
| QScrollBar::add-line:horizontal { | |
| border: none; | |
| outline: none; | |
| border-radius: 2px; | |
| background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #750e0e, stop: 1 #3a0909); | |
| width: 15px; | |
| subcontrol-position: right; | |
| subcontrol-origin: margin; | |
| } | |
| QScrollBar::sub-line:horizontal { | |
| border: none; | |
| outline: none; | |
| border-radius: 2px; | |
| background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #750e0e, stop: 1 #3a0909); | |
| width: 15px; | |
| subcontrol-position: left; | |
| subcontrol-origin: margin; | |
| } | |
| QScrollBar::right-arrow:horizontal, QScrollBar::left-arrow:horizontal | |
| { | |
| border: none; | |
| outline: none; | |
| width: 1px; | |
| height: 1px; | |
| background: white; | |
| } | |
| QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal | |
| { | |
| color :black; | |
| background: #212121; | |
| } | |
| QScrollBar:vertical | |
| { | |
| background: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0, stop: 0.0 #121212, stop: 0.2 #282828, stop: 1 #484848); | |
| width: 15px; | |
| margin: 16px 0 16px 0; | |
| border: none; | |
| outline: none; | |
| } | |
| QScrollBar::handle:vertical | |
| { | |
| background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #750e0e, stop: 0.5 #3a0909, stop: 1 #750e0e); | |
| min-height: 20px; | |
| border-radius: 2px; | |
| } | |
| QScrollBar::add-line:vertical | |
| { | |
| border: none; | |
| outline: none; | |
| border-radius: 2px; | |
| background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #750e0e, stop: 1 #3a0909); | |
| height: 14px; | |
| subcontrol-position: bottom; | |
| subcontrol-origin: margin; | |
| } | |
| QScrollBar::sub-line:vertical | |
| { | |
| border: none; | |
| outline: none; | |
| border-radius: 2px; | |
| background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #750e0e, stop: 1 #3a0909); | |
| height: 14px; | |
| subcontrol-position: top; | |
| subcontrol-origin: margin; | |
| } | |
| QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical | |
| { | |
| border: none; | |
| outline: none; | |
| width: 1px; | |
| height: 1px; | |
| background: white; | |
| } | |
| QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical | |
| { | |
| background: black; | |
| } | |
| QTextEdit | |
| { | |
| background-color: #242424; | |
| } | |
| QPlainTextEdit | |
| { | |
| background-color: #242424; | |
| } | |
| QHeaderView::section | |
| { | |
| background-color: #212121; | |
| /*background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #616161, stop: 0.5 #505050, stop: 0.6 #434343, stop:1 #656565);*/ | |
| color: white; | |
| padding-left: 4px; | |
| border: none; | |
| outline: none; | |
| } | |
| QCheckBox:disabled | |
| { | |
| color: #414141; | |
| } | |
| QDockWidget::title | |
| { | |
| text-align: center; | |
| spacing: 3px; /* spacing between items in the tool bar */ | |
| background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #323232, stop: 0.5 #242424, stop:1 #323232); | |
| } | |
| QDockWidget::close-button, QDockWidget::float-button | |
| { | |
| text-align: center; | |
| spacing: 1px; /* spacing between items in the tool bar */ | |
| background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #323232, stop: 0.5 #242424, stop:1 #323232); | |
| } | |
| QDockWidget::close-button:hover, QDockWidget::float-button:hover | |
| { | |
| background: #242424; | |
| } | |
| QDockWidget::close-button:pressed, QDockWidget::float-button:pressed | |
| { | |
| padding: 1px -1px -1px 1px; | |
| } | |
| QMainWindow::separator | |
| { | |
| background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #161616, stop: 0.5 #151515, stop: 0.6 #212121, stop:1 #343434); | |
| color: #b1b1b1; | |
| padding-left: 4px; | |
| border: none; | |
| outline: none; | |
| spacing: 1px; | |
| /*spacing between items in the tool bar */ | |
| } | |
| QMainWindow::separator:hover | |
| { | |
| background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #750e0e, stop:0.5 #3a0909 | |
| stop:1 #750e0e); | |
| color: #b1b1b1; | |
| padding-left: 4px; | |
| border: none; | |
| outline: none; | |
| spacing: 1px; /* spacing between items in the tool bar */ | |
| } | |
| /*QToolBar::handle | |
| { | |
| spacing: 3px; spacing between items in the tool bar | |
| background: url(./icons/handle.png); | |
| }*/ | |
| QToolBar::handle:horizontal{ | |
| color:#212121; | |
| spacing: 3px; | |
| } | |
| QToolBar::handle:vertical { | |
| color: #212121; | |
| /*image: url(<SKINDIR>/images/Vmovetoolbar.png);*/ | |
| } | |
| QToolBar::separator:horizontal { | |
| color: #212121; | |
| /*image: url(<SKINDIR>/images/Hsepartoolbar.png);*/ | |
| } | |
| QToolBar::separator:vertical { | |
| color: #212121; | |
| /*image: url(<SKINDIR>/images/Vsepartoolbars.png);*/ | |
| } | |
| QMenu::separator | |
| { | |
| border: none; | |
| outline: none; | |
| height: 0.3px; | |
| background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #161616, stop: 0.5 #151515, stop: 0.6 #212121, stop:1 #343434); | |
| color: #b1b1b1; | |
| padding-left: 0.1px; | |
| margin-left: 1px; | |
| margin-right: 1px; | |
| } | |
| QProgressBar | |
| { | |
| border: none; | |
| outline: none; | |
| border-radius: 5px; | |
| text-align: center; | |
| } | |
| QProgressBar::chunk | |
| { | |
| background-color: #750e0e; | |
| width: 2.15px; | |
| margin: 0.5px; | |
| } | |
| QTabBar::tab { | |
| color: #b1b1b1; | |
| border: none; | |
| outline: none; | |
| border-bottom-style: none; | |
| background-color: #323232; | |
| border-top-right-radius: 12px; | |
| padding-left: 10px; | |
| padding-right: 10px; | |
| padding-top: 3px; | |
| padding-bottom: 2px; | |
| margin-right: 2px; | |
| } | |
| QTabWidget::pane { | |
| border: none; | |
| soutline: none; | |
| top: 1px; | |
| } | |
| QTabBar::tab:last | |
| { | |
| margin-right: 0; /* the last selected tab has nothing to overlap with on the right */ | |
| border-top-right-radius: 3px; | |
| } | |
| QTabBar::tab:first:!selected | |
| { | |
| margin-left: 0px; /* the last selected tab has nothing to overlap with on the right */ | |
| border-top-left-radius: 3px; | |
| } | |
| QTabBar::tab:!selected | |
| { | |
| color: #b1b1b1; | |
| border-bottom-style: solid; | |
| margin-top: 3px; | |
| background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:1 #212121, stop:.4 #343434); | |
| } | |
| QTabBar::tab:selected | |
| { | |
| border-top-left-radius: 3px; | |
| border-top-right-radius: 3px; | |
| margin-bottom: 0px; | |
| } | |
| QTabBar::tab:!selected:hover | |
| { | |
| /*border-top: 2px solid #ffaa00; | |
| padding-bottom: 3px;*/ | |
| border-top-left-radius: 3px; | |
| border-top-right-radius: 3px; | |
| background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:1 #212121, stop:0.4 #343434, stop:0.2 #343434, stop:0.1 #750e0e); | |
| } | |
| QRadioButton::indicator:checked, QRadioButton::indicator:unchecked{ | |
| color: #b1b1b1; | |
| background-color: #323232; | |
| border: none; | |
| outline: none; | |
| border-radius: 6px; | |
| } | |
| QRadioButton::indicator:checked | |
| { | |
| background-color: qradialgradient( | |
| cx: 0.5, cy: 0.5, | |
| fx: 0.5, fy: 0.5, | |
| radius: 1.0, | |
| stop: 0.25 #750e0e, | |
| stop: 0.3 #323232 | |
| ); | |
| } | |
| QCheckBox::indicator{ | |
| color: #b1b1b1; | |
| background-color: #323232; | |
| border: none; | |
| outline: none; | |
| width: 9px; | |
| height: 9px; | |
| } | |
| QComboBox { | |
| border: none; | |
| outline: none; | |
| border-radius: 3px; | |
| padding: 1px 18px 1px 3px; | |
| min-width: 6em; | |
| } | |
| QComboBox:editable { | |
| background: black; | |
| } | |
| QComboBox:!editable, QComboBox::drop-down:editable { | |
| background: #212121; | |
| /* background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, | |
| stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, | |
| stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); | |
| */} | |
| /* QComboBox gets the "on" state when the popup is open */ | |
| QComboBox:!editable:on, QComboBox::drop-down:editable:on { | |
| background: #212121; | |
| /*background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, | |
| stop: 0 #D3D3D3, stop: 0.4 #D8D8D8, | |
| stop: 0.5 #DDDDDD, stop: 1.0 #E1E1E1);*/ | |
| } | |
| QComboBox:on { /* shift the text when the popup opens */ | |
| padding-top: 3px; | |
| padding-left: 4px; | |
| } | |
| QCheckBox { | |
| spacing: 5px; | |
| } | |
| QCheckBox::indicator { | |
| width: 13px; | |
| height: 13px; | |
| border: none; | |
| outline: none; | |
| } | |
| QCheckBox::indicator:unchecked, | |
| QCheckBox::indicator:unchecked:hover, | |
| QGroupBox::indicator:unchecked, | |
| QGroupBox::indicator:unchecked:hover | |
| { | |
| image: url(./icons/checkbox_unchecked.png); | |
| } | |
| QCheckBox::indicator:checked, | |
| QCheckBox::indicator:checked:hover, | |
| QGroupBox::indicator:checked, | |
| QGroupBox::indicator:checked:hover | |
| { | |
| image: url(./icons/checkbox_checked.png); | |
| } | |
| QComboBox::down-arrow:on { /* shift the arrow when popup is open */ | |
| top: 1px; | |
| left: 1px; | |
| } | |
| QRadioButton::indicator | |
| { | |
| border-radius: 6px; | |
| } | |
| QRadioButton::indicator:hover, QCheckBox::indicator:hover | |
| { | |
| border: none; | |
| outline: none; | |
| } | |
| QCheckBox::indicator:checked | |
| { | |
| image:url(./icons/checkbox_checked.png); | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment