New interface theme, new icon

This commit is contained in:
Alexis Delhaie
2020-10-02 21:29:14 +02:00
parent 4308d9e93a
commit 08dcecbee9
15 changed files with 849 additions and 295 deletions

View File

@@ -52,18 +52,45 @@ QPushButton::default{
border-top-color: transparent;
border-right-color: transparent;
border-left-color: transparent;
border-bottom-color: #04b97f;
border-bottom-color: rgba(204, 22, 0, 255);
border-width: 1px;
color: #a9b7c6;
padding: 2px;
background-color: #1e1d23;
}
QPushButton#closeButton, QPushButton#minimizeButton{
color: white;
padding: 2px;
background-color: transparent;
border: none;
font-size: 11px;
}
QPushButton#closeButton::default, QFrame#titleBar QPushButton#minimizeButton::default{
color: white;
padding: 2px;
background-color: transparent;
border: none;
font-size: 11px;
}
QPushButton#closeButton:hover{
color: white;
padding-bottom: 2px;
background-color: #eb4034;
}
QPushButton#closeButton:pressed{
color: white;
padding-bottom: 1px;
background-color: #b83228;
}
QToolButton {
border-style: solid;
border-top-color: transparent;
border-right-color: transparent;
border-left-color: transparent;
border-bottom-color: #04b97f;
border-bottom-color: rgba(204, 22, 0, 255);
border-bottom-width: 1px;
border-style: solid;
color: #a9b7c6;
@@ -75,7 +102,7 @@ QToolButton:hover{
border-top-color: transparent;
border-right-color: transparent;
border-left-color: transparent;
border-bottom-color: #37efba;
border-bottom-color: rgba(204, 22, 0, 255);
border-bottom-width: 2px;
border-style: solid;
color: #FFFFFF;
@@ -87,7 +114,7 @@ QPushButton:hover{
border-top-color: transparent;
border-right-color: transparent;
border-left-color: transparent;
border-bottom-color: #37efba;
border-bottom-color: rgba(204, 22, 0, 255);
border-bottom-width: 1px;
border-style: solid;
color: #FFFFFF;
@@ -99,10 +126,10 @@ QPushButton:pressed{
border-top-color: transparent;
border-right-color: transparent;
border-left-color: transparent;
border-bottom-color: #37efba;
border-bottom-color: rgba(204, 22, 0, 255);
border-bottom-width: 2px;
border-style: solid;
color: #37efba;
color: rgba(204, 22, 0, 255);
padding-bottom: 1px;
background-color: #1e1d23;
}
@@ -144,7 +171,7 @@ QProgressBar {
background-color:#1e1d23;
}
QProgressBar::chunk {
background-color: #04b97f;
background-color: rgba(204, 22, 0, 255);
border-radius: 5px;
}
QMenuBar {
@@ -165,7 +192,7 @@ QMenu::item:selected {
border-style: solid;
border-top-color: transparent;
border-right-color: transparent;
border-left-color: #04b97f;
border-left-color: rgba(204, 22, 0, 255);
border-bottom-color: transparent;
border-left-width: 2px;
color: #FFFFFF;
@@ -222,7 +249,7 @@ QTabBar::tab:selected, QTabBar::tab:last:selected, QTabBar::tab:hover {
border-top-color: transparent;
border-right-color: transparent;
border-left-color: transparent;
border-bottom-color: #04b97f;
border-bottom-color: rgba(204, 22, 0, 255);
border-bottom-width: 2px;
border-style: solid;
color: #FFFFFF;
@@ -258,9 +285,9 @@ QCheckBox::indicator:checked {
width: 10px;
border-style:solid;
border-width: 1px;
border-color: #04b97f;
border-color: rgba(204, 22, 0, 255);
color: #a9b7c6;
background-color: #04b97f;
background-color: rgba(204, 22, 0, 255);
}
QCheckBox::indicator:unchecked {
@@ -268,7 +295,7 @@ QCheckBox::indicator:unchecked {
width: 10px;
border-style:solid;
border-width: 1px;
border-color: #04b97f;
border-color: rgba(204, 22, 0, 255);
color: #a9b7c6;
background-color: transparent;
}
@@ -283,9 +310,9 @@ QRadioButton::indicator:checked {
border-style:solid;
border-radius:5px;
border-width: 1px;
border-color: #04b97f;
border-color: rgba(204, 22, 0, 255);
color: #a9b7c6;
background-color: #04b97f;
background-color: rgba(204, 22, 0, 255);
}
QRadioButton::indicator:!checked {
height: 10px;
@@ -293,7 +320,7 @@ QRadioButton::indicator:!checked {
border-style:solid;
border-radius:5px;
border-width: 1px;
border-color: #04b97f;
border-color: rgba(204, 22, 0, 255);
color: #a9b7c6;
background-color: transparent;
}
@@ -361,11 +388,11 @@ QScrollArea {
}
QSlider::groove:horizontal {
height: 5px;
background: #04b97f;
background: rgba(204, 22, 0, 255);
}
QSlider::groove:vertical {
width: 5px;
background: #04b97f;
background: rgba(204, 22, 0, 255);
}
QSlider::handle:horizontal {
background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #b4b4b4, stop:1 #8f8f8f);
@@ -388,8 +415,8 @@ QSlider::add-page:vertical {
background: white;
}
QSlider::sub-page:horizontal {
background: #04b97f;
background: rgba(204, 22, 0, 255);
}
QSlider::sub-page:vertical {
background: #04b97f;
}
background: rgba(204, 22, 0, 255);
}