()
| 16 | |
| 17 | @staticmethod |
| 18 | def dark(): |
| 19 | return TextInputColors( |
| 20 | hovered_outer_textinput_border_color="#1B2C58", |
| 21 | hovered_inner_textinput_border_color="#1e55e2", |
| 22 | default_outer_textinput_border_color="#26376b", |
| 23 | default_inner_textinput_border_color="#494D5F", |
| 24 | text_field_focused_background_color="#323741", |
| 25 | text_field_border_color="#2b2f3b", |
| 26 | text_field_background_color="#292f3a", |
| 27 | text_color="#ffffff", |
| 28 | cursor_color="#ffffff", |
| 29 | ) |
| 30 | |
| 31 | @staticmethod |
| 32 | def light(): |
no test coverage detected