Files
BionxControl/resources/bc_dark.qss

201 lines
3.9 KiB
Plaintext
Raw Normal View History

2026-01-06 22:39:41 +01:00
/* ===== Fluent Dark Mode Theme ===== */
/* Basierend auf Microsoft Fluent Design System */
/* === Color Palette === */
/* Background: #202020, #2b2b2b, #323232 */
/* Accent: #0078d4 (Fluent Blue) */
/* Text: #ffffff, #e4e4e4 */
/* Borders: #3d3d3d, #4d4d4d */
/* === QWidget Base === */
QWidget {
background-color: #202020;
color: #ffffff;
font-family: "Segoe UI", "Roboto", sans-serif;
font-size: 14px;
}
2026-01-07 22:20:39 +01:00
QLabel#_headerLabel
{
font-size: 18pt;
/*font-weight: bold;*/
}
2026-01-06 22:39:41 +01:00
QWidget:disabled {
color: #6d6d6d;
}
2025-12-22 00:14:42 +01:00
2026-01-06 13:05:19 +01:00
/* === QToolButton === */
2026-01-06 22:39:41 +01:00
QToolButton {
2025-12-22 12:39:38 +01:00
background-color: transparent;
2026-01-06 22:39:41 +01:00
color: #ffffff;
border: 1px solid transparent;
2025-12-22 12:39:38 +01:00
border-radius: 4px;
2026-01-06 22:39:41 +01:00
padding: 6px 12px;
margin: 2px;
2025-12-17 16:24:13 +01:00
}
2026-01-06 22:39:41 +01:00
QToolButton:hover {
background-color: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.08);
2025-12-17 16:24:13 +01:00
}
2026-01-06 22:39:41 +01:00
QToolButton:pressed {
background-color: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
2025-12-17 16:24:13 +01:00
}
2026-01-06 22:39:41 +01:00
QToolButton:checked {
background-color: rgba(0, 120, 212, 0.15);
border: 1px solid #0078d4;
color: #0078d4;
2025-12-17 16:24:13 +01:00
}
2026-01-06 22:39:41 +01:00
QToolButton:checked:hover {
background-color: rgba(0, 120, 212, 0.25);
2026-01-06 13:58:02 +01:00
}
2026-01-06 22:39:41 +01:00
QToolButton:disabled {
color: #6d6d6d;
background-color: transparent;
}
2026-01-06 13:58:02 +01:00
2026-01-06 22:39:41 +01:00
/* ToolButton mit Icon */
QToolButton[popupMode="1"] { /* MenuButtonPopup */
padding-right: 20px;
}
2026-01-06 13:58:02 +01:00
2026-01-06 22:39:41 +01:00
QToolButton::menu-button {
border: none;
border-left: 1px solid rgba(255, 255, 255, 0.1);
width: 16px;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
QToolButton::menu-button:hover {
background-color: rgba(255, 255, 255, 0.1);
}
QToolButton::menu-arrow {
image: url(:/icons/chevron-down-white.svg);
width: 10px;
height: 10px;
}
2026-01-06 13:58:02 +01:00
2026-01-06 22:39:41 +01:00
/* === QTableView === */
QTableView {
background-color: #2b2b2b;
alternate-background-color: #252525;
color: #ffffff;
gridline-color: #3d3d3d;
border: 1px solid #3d3d3d;
2026-01-06 13:58:02 +01:00
border-radius: 4px;
2026-01-06 22:39:41 +01:00
selection-background-color: #0078d4;
selection-color: #ffffff;
2026-01-06 13:58:02 +01:00
}
2026-01-06 22:39:41 +01:00
QTableView::item {
padding: 8px;
border: none;
2026-01-06 13:58:02 +01:00
}
2026-01-06 22:39:41 +01:00
QTableView::item:hover {
background-color: rgba(255, 255, 255, 0.06);
}
2026-01-06 13:58:02 +01:00
2026-01-06 22:39:41 +01:00
QTableView::item:selected {
background-color: #0078d4;
color: #ffffff;
2026-01-06 13:58:02 +01:00
}
2026-01-06 22:39:41 +01:00
QTableView::item:selected:hover {
background-color: #005a9e;
2026-01-06 13:58:02 +01:00
}
2026-01-06 22:39:41 +01:00
QTableView::item:selected:!active {
background-color: rgba(0, 120, 212, 0.5);
2026-01-06 13:58:02 +01:00
}
2026-01-06 22:39:41 +01:00
/* === QScrollBar Vertical === */
2026-01-06 13:58:02 +01:00
QScrollBar:vertical {
2026-01-06 22:39:41 +01:00
background: transparent;
2026-01-06 13:58:02 +01:00
width: 12px;
margin: 0;
}
QScrollBar::handle:vertical {
2026-01-06 22:39:41 +01:00
background: rgba(255, 255, 255, 0.2);
min-height: 30px;
2026-01-06 13:58:02 +01:00
border-radius: 6px;
margin: 2px;
}
QScrollBar::handle:vertical:hover {
2026-01-06 22:39:41 +01:00
background: rgba(255, 255, 255, 0.35);
2026-01-06 13:58:02 +01:00
}
QScrollBar::handle:vertical:pressed {
2026-01-06 22:39:41 +01:00
background: rgba(255, 255, 255, 0.5);
2026-01-06 13:58:02 +01:00
}
QScrollBar::add-line:vertical,
QScrollBar::sub-line:vertical {
height: 0px;
}
QScrollBar::add-page:vertical,
QScrollBar::sub-page:vertical {
2026-01-06 22:39:41 +01:00
background: transparent;
}
/* === QScrollBar Horizontal === */
QScrollBar:horizontal {
background: transparent;
height: 12px;
margin: 0;
}
QScrollBar::handle:horizontal {
background: rgba(255, 255, 255, 0.2);
min-width: 30px;
border-radius: 6px;
margin: 2px;
}
QScrollBar::handle:horizontal:hover {
background: rgba(255, 255, 255, 0.35);
}
QScrollBar::handle:horizontal:pressed {
background: rgba(255, 255, 255, 0.5);
}
QScrollBar::add-line:horizontal,
QScrollBar::sub-line:horizontal {
width: 0px;
}
QScrollBar::add-page:horizontal,
QScrollBar::sub-page:horizontal {
background: transparent;
2026-01-06 13:58:02 +01:00
}
2026-01-06 22:39:41 +01:00
/* === QToolTip === */
QToolTip {
background-color: #323232;
color: #ffffff;
border: 1px solid #4d4d4d;
border-radius: 4px;
padding: 6px 8px;
font-size: 13px;
}
/* === Corner Widget (zwischen Scrollbars) === */
QTableView QTableCornerButton::section {
background-color: #323232;
border: none;
border-right: 1px solid #3d3d3d;
border-bottom: 1px solid #3d3d3d;
}