Elesh Vaishnav
Upload 26 files
219f983 verified
raw
history blame contribute delete
760 Bytes
import os
import sys
import gradio as gr
from assets.i18n.i18n import I18nAuto
import assets.themes.loadThemes as loadThemes
now_dir = os.getcwd()
sys.path.append(now_dir)
i18n = I18nAuto()
def theme_tab():
with gr.Row():
with gr.Column():
themes_select = gr.Dropdown(
loadThemes.get_theme_list(),
value=loadThemes.load_theme(),
label=i18n("Theme"),
info=i18n(
"Select the theme you want to use. (Requires restarting Applio)"
),
visible=True,
)
themes_select.change(
fn=loadThemes.select_theme,
inputs=themes_select,
outputs=[],
)