css.py 371 B

1234567891011121314
  1. from tts_webui.css.material_symbols_css import material_symbols_css
  2. from tts_webui.history_tab.history_css import history_css
  3. from tts_webui.tortoise.css_tortoise import css_tortoise
  4. def load_css(filename: str):
  5. with open(filename, "r") as f:
  6. return f.read()
  7. full_css = ""
  8. full_css += material_symbols_css
  9. full_css += css_tortoise
  10. full_css += history_css