-
-
Notifications
You must be signed in to change notification settings - Fork 531
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c13bd64
commit 9f1a278
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
) |