Skip to content

Commit

Permalink
Update dark mode styles
Browse files Browse the repository at this point in the history
  • Loading branch information
LyubomirT committed Jul 27, 2024
1 parent b5b4451 commit da57f2c
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions darkmode.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
QMainWindow {
background-color: #333333;
}

QTextEdit {
font-family: "Verdana";
font-size: 12pt;
background-color: #222222;
border: 1px solid #555555;
padding: 5px;
color: #ffffff;
}

QLabel {
font-size: 10pt;
margin-bottom: 5px;
color: #ffffff;
}

QSpinBox, QDoubleSpinBox {
font-size: 10pt;
background-color: #222222;
border: 1px solid #555555;
padding: 5px;
width: 100px;
color: #ffffff;
}

QCheckBox {
font-size: 10pt;
margin: 10px 0;
padding: 10px;
color: #ffffff;
}

QPushButton {
font-size: 9pt;
padding: 10px;
background-color: #444444;
color: #ffffff;
border: none;
border-radius: 5px;
font: bold;
}

QPushButton:hover {
background-color: #666666;
}

QPushButton:disabled {
background-color: #555555;
}

QProgressBar {
font-size: 10pt;
text-align: center;
background-color: #222222;
border: 1px solid #555555;
height: 20px;
}

QProgressBar::chunk {
background-color: #ffdc5f;
width: 10px;
}

0 comments on commit da57f2c

Please sign in to comment.