Spaces:
Sleeping
Sleeping
File size: 706 Bytes
7d134e4 |
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 |
from gradio.themes.base import Base, ThemeClass
from gradio.themes.default import Default
from gradio.themes.glass import Glass
from gradio.themes.monochrome import Monochrome
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",
]
def builder(*args, **kwargs):
from gradio.themes.builder_app import demo
return demo.launch(*args, **kwargs)
|