mirror of
https://github.com/HavocFramework/Havoc
synced 2026-06-08 11:13:29 +00:00
96 lines
1.4 KiB
Plaintext
96 lines
1.4 KiB
Plaintext
QDialog {
|
|
background-color: #282a36;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
QWidget {
|
|
background-color: #282a36;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
QPushButton {
|
|
border: 1px solid #bd93f9;
|
|
border-radius: 2px;
|
|
background-color: #bd93f9;
|
|
color: #282a36;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
QProgressBar {
|
|
text-align: center;
|
|
}
|
|
|
|
QProgressBar::chunk {
|
|
background-color: #6272a4;
|
|
color: #282a36;
|
|
}
|
|
|
|
QTextEdit {
|
|
background-color: #44475a;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
QComboBox {
|
|
background-color: #44475a;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
QComboBox:!enabled {
|
|
background-color: #282a36;
|
|
color: #6272a4;
|
|
}
|
|
|
|
QComboBox::item {
|
|
background: #44475a;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
QComboBox::item:selected {
|
|
background: #6272a4;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
QGroupBox::title {
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
QPushButton:pressed {
|
|
border: 1px solid #bd93f9;
|
|
border-radius: 2px;
|
|
background-color: #282a36;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
QListWidget {
|
|
margin-top: 2px;
|
|
background-color: #44475a;
|
|
border-radius: 2px;
|
|
color: #f8f8f2;
|
|
border: 1px solid #44475a;
|
|
}
|
|
|
|
QLabel {
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
QLineEdit {
|
|
background-color: #44475a;
|
|
color: #f8f8f2;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
QLineEdit:read-only {
|
|
background-color: #313342;
|
|
color: #f8f8f2;
|
|
}
|
|
|
|
#ConfigItem, #list, #text, #bool {
|
|
background-color: #282a36;
|
|
color: #50fa7b;
|
|
}
|
|
|
|
QPlainTextEdit {
|
|
background-color: #44475a;
|
|
color: #f8f8f2;
|
|
} |