Skip to content

Commit

Permalink
Expose theme API
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed May 8, 2023
1 parent c13bd64 commit 9f1a278
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions panel/theme/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
"""
The theme module contains Design and Theme components.
Each Design applies a coherent design system (e.g. bootstrap or
material) to a template or a set of components, while Theme objects
implement different color palettes (e.g. dark or default).
"""

from .base import ( # noqa
THEMES, DarkTheme, DefaultTheme, Design, Inherit, Theme,
)
from .bootstrap import Bootstrap
from .fast import Fast
from .material import Material
from .native import Native

__all__ = (
"THEMES",
"Bootstrap",
"DarkTheme",
"DefaultTheme",
"Design",
"Fast",
"Inherit",
"Material",
"Native",
"Theme"
)

0 comments on commit 9f1a278

Please sign in to comment.