2026-03-11 19:11:25 -07:00
|
|
|
/* Setec Partition Wizard - Default Stylesheet */
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Base dark theme — all main window widgets get white text
|
|
|
|
|
on dark backgrounds.
|
|
|
|
|
Dialogs, message boxes, and system popups are explicitly
|
|
|
|
|
given dark backgrounds so white text stays readable.
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
QWidget {
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QMainWindow {
|
|
|
|
|
background-color: #1e1e2e;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Dialogs — explicitly dark so popups don't get grey Windows
|
|
|
|
|
backgrounds with white text painted over them
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
QDialog {
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMessageBox {
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMessageBox QLabel {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QInputDialog {
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFileDialog {
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFileDialog QLabel {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QColorDialog {
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFontDialog {
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Tabs
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QTabWidget::pane {
|
|
|
|
|
border: 1px solid #45475a;
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTabBar::tab {
|
|
|
|
|
background-color: #313244;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
padding: 8px 20px;
|
|
|
|
|
margin-right: 2px;
|
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
|
min-width: 120px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTabBar::tab:selected {
|
|
|
|
|
background-color: #45475a;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
|
|
|
|
border-bottom: 2px solid #d4a574;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTabBar::tab:hover:!selected {
|
|
|
|
|
background-color: #3b3d52;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Views
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
QTreeView, QTableView, QListView, QListWidget, QTreeWidget {
|
2026-03-11 19:11:25 -07:00
|
|
|
background-color: #181825;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
border: 1px solid #45475a;
|
|
|
|
|
selection-background-color: #45475a;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
selection-color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
alternate-background-color: #1e1e2e;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QTreeView::item:hover, QTableView::item:hover,
|
|
|
|
|
QListView::item:hover, QListWidget::item:hover {
|
2026-03-11 19:11:25 -07:00
|
|
|
background-color: #313244;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QTreeView::item:selected, QTableView::item:selected,
|
|
|
|
|
QListView::item:selected, QListWidget::item:selected {
|
|
|
|
|
background-color: #45475a;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QHeaderView {
|
|
|
|
|
background-color: #313244;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QHeaderView::section {
|
|
|
|
|
background-color: #313244;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
padding: 4px 8px;
|
|
|
|
|
border: 1px solid #45475a;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Buttons
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QPushButton {
|
|
|
|
|
background-color: #45475a;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
border: 1px solid #585b70;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 6px 16px;
|
|
|
|
|
min-width: 80px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPushButton:hover {
|
|
|
|
|
background-color: #585b70;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPushButton:pressed {
|
|
|
|
|
background-color: #313244;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QPushButton:disabled {
|
|
|
|
|
background-color: #2a2a3a;
|
|
|
|
|
color: #6e7080;
|
|
|
|
|
border-color: #45475a;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QPushButton#applyButton {
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
background-color: #d4a574;
|
2026-03-11 19:11:25 -07:00
|
|
|
color: #1e1e2e;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPushButton#applyButton:hover {
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
background-color: #c49060;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPushButton#cancelButton {
|
|
|
|
|
background-color: #f38ba8;
|
|
|
|
|
color: #1e1e2e;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* Dialog box standard buttons (OK, Cancel, Yes, No) */
|
|
|
|
|
QDialogButtonBox QPushButton {
|
|
|
|
|
background-color: #45475a;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
border: 1px solid #585b70;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 5px 16px;
|
|
|
|
|
min-width: 70px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QDialogButtonBox QPushButton:hover {
|
|
|
|
|
background-color: #585b70;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QDialogButtonBox QPushButton:default {
|
|
|
|
|
background-color: #d4a574;
|
|
|
|
|
color: #1e1e2e;
|
|
|
|
|
border-color: #b08050;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Progress bar
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QProgressBar {
|
|
|
|
|
background-color: #313244;
|
|
|
|
|
border: 1px solid #45475a;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
text-align: center;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QProgressBar::chunk {
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
background-color: #d4a574;
|
2026-03-11 19:11:25 -07:00
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Menus
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QMenuBar {
|
|
|
|
|
background-color: #181825;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenuBar::item:selected {
|
|
|
|
|
background-color: #45475a;
|
2026-03-12 00:07:31 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu {
|
|
|
|
|
background-color: #1e1e2e;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
border: 1px solid #45475a;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QMenu::item {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
padding: 4px 20px 4px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QMenu::item:selected {
|
|
|
|
|
background-color: #45475a;
|
2026-03-12 00:07:31 -07:00
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu::item:disabled {
|
|
|
|
|
color: #6e7080;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QMenu::separator {
|
|
|
|
|
height: 1px;
|
|
|
|
|
background-color: #45475a;
|
|
|
|
|
margin: 4px 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Toolbar / Status bar
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QToolBar {
|
|
|
|
|
background-color: #181825;
|
|
|
|
|
border-bottom: 1px solid #45475a;
|
|
|
|
|
spacing: 4px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStatusBar {
|
|
|
|
|
background-color: #181825;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
border-top: 1px solid #45475a;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QStatusBar QLabel {
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
background-color: transparent;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Group box
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
QGroupBox {
|
|
|
|
|
border: 1px solid #45475a;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
padding-top: 8px;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-12 00:07:31 -07:00
|
|
|
background-color: #1e1e2e;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QGroupBox::title {
|
|
|
|
|
subcontrol-origin: margin;
|
|
|
|
|
left: 10px;
|
|
|
|
|
padding: 0 4px;
|
2026-03-12 00:07:31 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Input widgets
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
QLineEdit, QSpinBox, QDoubleSpinBox {
|
2026-03-11 19:11:25 -07:00
|
|
|
background-color: #313244;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
border: 1px solid #45475a;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 4px 8px;
|
2026-03-12 00:07:31 -07:00
|
|
|
selection-background-color: #45475a;
|
|
|
|
|
selection-color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QLineEdit:focus, QSpinBox:focus, QDoubleSpinBox:focus {
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
border-color: #d4a574;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QLineEdit:disabled, QSpinBox:disabled, QDoubleSpinBox:disabled {
|
|
|
|
|
background-color: #2a2a3a;
|
|
|
|
|
color: #6e7080;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QLineEdit:read-only {
|
|
|
|
|
background-color: #252535;
|
|
|
|
|
color: #a0a0b0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox {
|
2026-03-11 19:11:25 -07:00
|
|
|
background-color: #313244;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
color: #ffffff;
|
2026-03-11 19:11:25 -07:00
|
|
|
border: 1px solid #45475a;
|
2026-03-12 00:07:31 -07:00
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
min-width: 60px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox:focus {
|
|
|
|
|
border-color: #d4a574;
|
2026-03-11 19:11:25 -07:00
|
|
|
}
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QComboBox:disabled {
|
|
|
|
|
background-color: #2a2a3a;
|
|
|
|
|
color: #6e7080;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox::drop-down {
|
|
|
|
|
border: none;
|
|
|
|
|
width: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox QAbstractItemView {
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
border: 1px solid #45475a;
|
|
|
|
|
selection-background-color: #45475a;
|
|
|
|
|
selection-color: #ffffff;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Spin box arrow buttons */
|
|
|
|
|
QSpinBox::up-button, QSpinBox::down-button,
|
|
|
|
|
QDoubleSpinBox::up-button, QDoubleSpinBox::down-button {
|
|
|
|
|
background-color: #45475a;
|
|
|
|
|
border: none;
|
|
|
|
|
width: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QSpinBox::up-button:hover, QSpinBox::down-button:hover,
|
|
|
|
|
QDoubleSpinBox::up-button:hover, QDoubleSpinBox::down-button:hover {
|
|
|
|
|
background-color: #585b70;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Splitter / separators
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
QSplitter::handle {
|
|
|
|
|
background-color: #45475a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Labels
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
QLabel {
|
|
|
|
|
color: #ffffff;
|
2026-03-12 00:07:31 -07:00
|
|
|
background-color: transparent;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Check boxes and radio buttons
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
QCheckBox, QRadioButton {
|
|
|
|
|
color: #ffffff;
|
2026-03-12 00:07:31 -07:00
|
|
|
background-color: transparent;
|
|
|
|
|
spacing: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QCheckBox:disabled, QRadioButton:disabled {
|
|
|
|
|
color: #6e7080;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Text editors
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
QTextEdit, QPlainTextEdit {
|
|
|
|
|
background-color: #181825;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
border: 1px solid #45475a;
|
2026-03-12 00:07:31 -07:00
|
|
|
selection-background-color: #45475a;
|
|
|
|
|
selection-color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Tooltips
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
QToolTip {
|
|
|
|
|
background-color: #313244;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
border: 1px solid #45475a;
|
|
|
|
|
padding: 4px 6px;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
/* ============================================================
|
|
|
|
|
Scroll bars
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
QScrollBar:vertical {
|
|
|
|
|
background-color: #181825;
|
|
|
|
|
width: 12px;
|
2026-03-12 00:07:31 -07:00
|
|
|
border: none;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QScrollBar::handle:vertical {
|
|
|
|
|
background-color: #45475a;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
min-height: 20px;
|
2026-03-12 00:07:31 -07:00
|
|
|
margin: 2px;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QScrollBar::handle:vertical:hover {
|
|
|
|
|
background-color: #585b70;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 00:07:31 -07:00
|
|
|
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
|
|
|
|
|
height: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
QScrollBar:horizontal {
|
|
|
|
|
background-color: #181825;
|
|
|
|
|
height: 12px;
|
2026-03-12 00:07:31 -07:00
|
|
|
border: none;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QScrollBar::handle:horizontal {
|
|
|
|
|
background-color: #45475a;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
min-width: 20px;
|
2026-03-12 00:07:31 -07:00
|
|
|
margin: 2px;
|
v1.1.0 — SD card recovery, 25 new filesystem types, UI theme overhaul
- SD card recovery tool: detects and repairs cards Windows can't see,
including mid-format failures, corrupted partition tables, RAW media.
Uses IOCTL_DISK_CREATE_DISK + IOCTL_DISK_SET_DRIVE_LAYOUT_EX directly.
- 25 new filesystem types: F2FS, JFFS2, NILFS2, FATX, STFS, GDFX, PS2MC,
VHD, VHDX, VMDK, QCOW2, VDI, RVZ, WUA, WBFS, NRG, CDFS, HDFS + more
- Detection routines for all new types with correct magic number signatures
- UI theme: bright green replaced with pale grayish peach, all text white
- hwdiag rebuilt in Release mode; added build_hwdiag_release.bat
- garbage.xtx auto-copied to build output directory post-build
2026-03-11 23:56:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QScrollBar::handle:horizontal:hover {
|
|
|
|
|
background-color: #585b70;
|
|
|
|
|
}
|
2026-03-12 00:07:31 -07:00
|
|
|
|
|
|
|
|
QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal {
|
|
|
|
|
width: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Frame / containers used inside dialogs
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
QFrame {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFrame[frameShape="4"], /* HLine */
|
|
|
|
|
QFrame[frameShape="5"] /* VLine */ {
|
|
|
|
|
background-color: #45475a;
|
|
|
|
|
border: none;
|
|
|
|
|
max-height: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStackedWidget {
|
|
|
|
|
background-color: #1e1e2e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractScrollArea {
|
|
|
|
|
background-color: #181825;
|
|
|
|
|
}
|