主窗口样式
()
| 25 | |
| 26 | |
| 27 | def get_main_window_style() -> str: |
| 28 | """主窗口样式""" |
| 29 | return f""" |
| 30 | QMainWindow {{ |
| 31 | background-color: {COLORS['background']}; |
| 32 | color: {COLORS['text_primary']}; |
| 33 | }} |
| 34 | |
| 35 | QWidget {{ |
| 36 | background-color: {COLORS['background']}; |
| 37 | color: {COLORS['text_primary']}; |
| 38 | }} |
| 39 | """ |
| 40 | |
| 41 | |
| 42 | def get_button_style() -> str: |
no outgoing calls
no test coverage detected