initial commit

This commit is contained in:
Paul Lipscomb
2026-06-16 22:37:38 -04:00
commit 3e2147fa02
11 changed files with 2867 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
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;
}
"""