Returns a sorted list of the currently available color themes :return: A sorted list of the currently available color themes :rtype: List[str]
()
| 19866 | |
| 19867 | |
| 19868 | def theme_list(): |
| 19869 | """ |
| 19870 | Returns a sorted list of the currently available color themes |
| 19871 | |
| 19872 | :return: A sorted list of the currently available color themes |
| 19873 | :rtype: List[str] |
| 19874 | """ |
| 19875 | return list_of_look_and_feel_values() |
| 19876 | |
| 19877 | |
| 19878 | def theme_add_new(new_theme_name, new_theme_dict): |
no test coverage detected