Spaces:
Runtime error
Runtime error
File size: 865 Bytes
8a6cf24 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
from gradio.themes.base import Base, ThemeClass
from gradio.themes.citrus import Citrus
from gradio.themes.default import Default
from gradio.themes.glass import Glass
from gradio.themes.monochrome import Monochrome
from gradio.themes.ocean import Ocean
from gradio.themes.origin import Origin
from gradio.themes.soft import Soft
from gradio.themes.utils import colors, sizes
from gradio.themes.utils.colors import Color
from gradio.themes.utils.fonts import Font, GoogleFont
from gradio.themes.utils.sizes import Size
__all__ = [
"Base",
"Color",
"Default",
"Font",
"Glass",
"GoogleFont",
"Monochrome",
"Size",
"Soft",
"ThemeClass",
"colors",
"sizes",
"Origin",
"Citrus",
"Ocean",
]
def builder(*args, **kwargs):
from gradio.themes.builder_app import demo
return demo.launch(*args, **kwargs)
|