/* Velox — dark theme. Lane GUI. Structured identically to idm-like.qss — diff the two * when changing either. * * --- palette ----------------------------------------------------------------------- * --bg #202225 window and dialog background * --surface #2b2d31 table/tree, input field backgrounds * --surface-alt #313338 alternating row colour * --border #3f4147 panel/header/input borders * --text #e6e7ea primary text * --text-muted #9a9da3 secondary text (headers, disabled) * --accent #4c94e0 selection, focus ring, progress fill * --accent-hover #5da2ea hovered accent (buttons, tabs) * ------------------------------------------------------------------------------------- */ QMainWindow, QDialog { background: #202225; color: #e6e7ea; } QTreeView, QTableView, QListView { background: #2b2d31; alternate-background-color: #313338; color: #e6e7ea; border: 1px solid #3f4147; selection-background-color: #4c94e0; selection-color: #202225; } QHeaderView::section { background: #313338; color: #9a9da3; border: none; border-right: 1px solid #3f4147; border-bottom: 1px solid #3f4147; padding: 4px 6px; } QLineEdit, QPlainTextEdit, QSpinBox, QComboBox { background: #2b2d31; border: 1px solid #3f4147; border-radius: 3px; padding: 2px 4px; color: #e6e7ea; } QLineEdit:focus, QPlainTextEdit:focus, QSpinBox:focus, QComboBox:focus { border: 1px solid #4c94e0; } QPushButton { background: #2b2d31; border: 1px solid #3f4147; border-radius: 3px; padding: 4px 12px; color: #e6e7ea; } QPushButton:hover { border-color: #5da2ea; } QPushButton:default { background: #4c94e0; border-color: #4c94e0; color: #202225; } QPushButton:default:hover { background: #5da2ea; } QTabWidget::pane { border: 1px solid #3f4147; background: #2b2d31; } QTabBar::tab { background: #313338; border: 1px solid #3f4147; border-bottom: none; padding: 4px 12px; color: #9a9da3; } QTabBar::tab:selected { background: #2b2d31; color: #e6e7ea; } QProgressBar { border: 1px solid #3f4147; border-radius: 3px; background: #313338; text-align: center; color: #e6e7ea; } QProgressBar::chunk { background: #4c94e0; } QMenu { background: #2b2d31; border: 1px solid #3f4147; color: #e6e7ea; } QMenu::item:selected { background: #4c94e0; color: #202225; }