Files
virtual-controller/app-desktop-macos/styles.py
T
Paul Lipscomb 7ecc718f5d Reorganize top-level directories with clearer naming convention
app -> app-desktop-macos, presets -> app-presets, server -> remote-server,
daw-config-reaper -> osc-config-daw, plugin-reaper-realearn -> plugin-reaper-relearn.
Updated run.py and presets.py path references accordingly.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-15 17:51:05 -04:00

32 lines
704 B
Python

FADER_STYLE = """
QSlider::groove:vertical {
background: #1e1e1e;
width: 8px;
border-radius: 4px;
}
QSlider::handle:vertical {
background: #bbbbbb;
border: 1px solid #222222;
height: 39px;
width: 24px;
margin: 0 -8px;
border-radius: 3px;
}
QSlider::handle:vertical:hover {
background: #dddddd;
border: 1px solid #111111;
}
"""
TITLE_STYLE = """
QLineEdit {
background-color: #000000;
border: none;
color: #ffffff;
font-weight: bold;
padding: 2px;
}
QLineEdit:focus {
border: 1px solid #555;
}
"""