-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.py
38 lines (36 loc) · 865 Bytes
/
css.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
equal = """QPushButton {
background-color: rgb(26, 172, 255);
color: rgb(255, 255, 255);
border-radius: 16px
}
QPushButton:hover {
background-color: rgb(17, 154, 232);
color: rgb(232, 232, 232);
}
QPushButton:pressed {
background-color: rgb(96, 197, 255);
}"""
regular = """QPushButton {
background-color: rgb(238, 240, 245);
color: rgb(56, 185, 255);
border-radius: 16px
}
QPushButton:hover {
background-color: rgb(228, 231, 237);
}
QPushButton:pressed {
background-color: rgb(248, 248, 248);
color: rgb(94, 204, 255);
}"""
functions = """QPushButton {
background-color: rgb(173, 225, 255);
color: rgb(56, 185, 255);
border-radius: 16px
}
QPushButton:hover {
background-color: rgb(153, 209, 241);
}
QPushButton:pressed {
background-color: rgb(205, 237, 255);
color: rgb(113, 205, 255);
}"""