Skip to content

Commit 8653a04

Browse files
authored
Create styles.qss
1 parent 7caae94 commit 8653a04

File tree

1 file changed

+115
-0
lines changed

1 file changed

+115
-0
lines changed

styles.qss

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
/* Hacker Launcher Styles - Black, White, Purple, Blue */
2+
QWidget {
3+
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #1a1a1a, stop:1 #2a2a2a);
4+
color: #ffffff;
5+
font-family: "Courier New", monospace;
6+
font-size: 12px;
7+
}
8+
QMainWindow, QDialog, QProgressDialog {
9+
background: #1a1a1a;
10+
}
11+
QPushButton {
12+
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #4b0082, stop:1 #6a0dad);
13+
color: #ffffff;
14+
border: 2px solid #00b7eb;
15+
border-radius: 8px;
16+
padding: 10px 15px;
17+
font-weight: bold;
18+
}
19+
QPushButton:hover {
20+
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #6a0dad, stop:1 #8b0ece);
21+
border-color: #00d4ff;
22+
}
23+
QPushButton:pressed {
24+
background: #3a0062;
25+
}
26+
QTableWidget {
27+
background: #2a2a2a;
28+
border: 2px solid #00b7eb;
29+
border-radius: 8px;
30+
color: #ffffff;
31+
gridline-color: #00b7eb;
32+
}
33+
QTableWidget::item {
34+
padding: 8px;
35+
}
36+
QTableWidget::item:selected {
37+
background: #4b0082;
38+
color: #ffffff;
39+
}
40+
QHeaderView::section {
41+
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #4b0082, stop:1 #6a0dad);
42+
color: #ffffff;
43+
padding: 8px;
44+
border: 1px solid #00b7eb;
45+
}
46+
QComboBox {
47+
background: #2a2a2a;
48+
border: 2px solid #00b7eb;
49+
color: #ffffff;
50+
padding: 8px;
51+
border-radius: 8px;
52+
}
53+
QComboBox::drop-down {
54+
border: none;
55+
}
56+
QComboBox QAbstractItemView {
57+
background: #2a2a2a;
58+
color: #ffffff;
59+
selection-background-color: #4b0082;
60+
border: 2px solid #00b7eb;
61+
}
62+
QLineEdit {
63+
background: #2a2a2a;
64+
border: 2px solid #00b7eb;
65+
color: #ffffff;
66+
padding: 8px;
67+
border-radius: 8px;
68+
}
69+
QLineEdit:focus {
70+
border-color: #00d4ff;
71+
}
72+
QLabel {
73+
color: #ffffff;
74+
font-weight: bold;
75+
}
76+
QTabWidget::pane {
77+
border: 2px solid #00b7eb;
78+
background: #2a2a2a;
79+
border-radius: 8px;
80+
}
81+
QTabBar::tab {
82+
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #4b0082, stop:1 #6a0dad);
83+
color: #ffffff;
84+
padding: 12px 24px;
85+
margin: 4px;
86+
border-radius: 8px;
87+
border: 1px solid #00b7eb;
88+
}
89+
QTabBar::tab:selected {
90+
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #00b7eb, stop:1 #00d4ff);
91+
color: #1a1a1a;
92+
font-weight: bold;
93+
}
94+
QTabBar::tab:hover {
95+
background: #8b0ece;
96+
}
97+
QToolTip {
98+
background: #2a2a2a;
99+
color: #ffffff;
100+
border: 1px solid #00b7eb;
101+
}
102+
QProgressDialog {
103+
background: #1a1a1a;
104+
color: #ffffff;
105+
}
106+
QProgressBar {
107+
background: #2a2a2a;
108+
border: 2px solid #00b7eb;
109+
border-radius: 8px;
110+
text-align: center;
111+
color: #ffffff;
112+
}
113+
QProgressBar::chunk {
114+
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #4b0082, stop:1 #6a0dad);
115+
}

0 commit comments

Comments
 (0)