30 lines
773 B
Python
30 lines
773 B
Python
THEME_NIGHT = """
|
|
QWidget { background: #0B0E11; color: #E6EAF0; }
|
|
#TopBar, #BottomBar { background: #0F1318; }
|
|
#Divider { background: #1B2330; }
|
|
|
|
#SettingsSection { color: rgba(138,147,166,0.95); letter-spacing: 0.5px; }
|
|
#SettingsRow {
|
|
background: #141A22;
|
|
border-radius: 14px;
|
|
}
|
|
#SettingsRow:hover { background: #1B2330; }
|
|
#SettingsRowTitle { color: #E6EAF0; }
|
|
#SettingsRowSub { color: rgba(138,147,166,0.95); }
|
|
#SettingsChevron { color: rgba(138,147,166,0.95); }
|
|
|
|
#SettingsBackBtn {
|
|
background: #141A22;
|
|
border-radius: 12px;
|
|
padding: 8px 14px;
|
|
}
|
|
#SettingsBackBtn:hover { background: #1B2330; }
|
|
#DevExitBtn {
|
|
background: #1B2330;
|
|
border-radius: 14px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
#DevExitBtn:hover { background: #263142; }
|
|
"""
|