commit inicial

This commit is contained in:
2026-08-04 16:58:48 +02:00
commit b7c4e75ec0
7 changed files with 214 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
QWidget {
background-color: #121212;
color: #e0e0e0;
font-size: 13px;
}
QLineEdit {
background-color: #1e1e1e;
border: 1px solid #333;
padding: 6px;
border-radius: 6px;
}
QTableView {
background-color: #1e1e1e;
gridline-color: #333;
selection-background-color: #2d89ef;
}
QHeaderView::section {
background-color: #2b2b2b;
padding: 6px;
border: none;
font-weight: bold;
}
QPushButton {
padding: 4px 8px;
}
+29
View File
@@ -0,0 +1,29 @@
QWidget {
background-color: #f0f0f0;
color: #1e1e1e;
font-size: 13px;
}
QLineEdit {
background-color: #ffffff;
border: 1px solid #ccc;
padding: 6px;
border-radius: 6px;
}
QTableView {
background-color: #ffffff;
gridline-color: #ddd;
selection-background-color: #2d89ef;
}
QHeaderView::section {
background-color: #e0e0e0;
padding: 6px;
border: none;
font-weight: bold;
}
QPushButton {
padding: 4px 8px;
}