-
Notifications
You must be signed in to change notification settings - Fork 0
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
bbab43d
commit 0fb6eb9
Showing
3 changed files
with
65 additions
and
8 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,27 +1,31 @@ | ||
# Dash Charlotte | ||
|
||
A package of themes, tools and components that I use on my Plotly-Dash web applications. | ||
A package of themes, tools and components that I use on my Plotly-Dash web dashboards. | ||
|
||
This is still a super early work in progress and probably not very interesting, so don't waste your time here. | ||
|
||
## Submodules | ||
|
||
- **Components** | ||
- [**Components**](https://github.com/GusFurtado/dash-charlotte/tree/main/dash_charlotte/components) | ||
|
||
Some Dash components for fast dashboard building. | ||
A set of standard Dash components for a fast and modular dashboard building. | ||
|
||
- **Themes** | ||
- [**Themes**](https://github.com/GusFurtado/dash-charlotte/tree/main/dash_charlotte/themes) | ||
|
||
Colors, fonts, icon packages and CSS stuff. | ||
Tools for easy and consistent styling. Colors, fonts, icon packages and CSS stuff. | ||
|
||
- **Layouts** | ||
- [**Layouts**](https://github.com/GusFurtado/dash-charlotte/tree/main/dash_charlotte/layouts) | ||
|
||
Some pre-built page layouts. | ||
|
||
## Instatlation | ||
|
||
By `pip` in a near future. | ||
- `pip install dash-charlotte` | ||
|
||
## License | ||
|
||
- [MIT]([LICENSE]) | ||
- [**MIT**]([LICENSE]) | ||
|
||
## Getting Started | ||
|
||
Check the [example app](https://github.com/GusFurtado/dash-charlotte/blob/main/example_app.py). |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Dash Charlotte Components | ||
|
||
A set of standard Dash components for a fast and modular dashboard building. | ||
|
||
- [**Box**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/components/box.py) | ||
- [**Dashboard**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/components/dashboard.py) | ||
- [**Drawer**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/components/drawer.py) | ||
- [**Navbar**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/components/navbar.py) |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Dash Charlotte Themes | ||
|
||
Tools for easy and consistent styling. | ||
|
||
Add them in Dash's `external_stylesheet` argument: | ||
|
||
```python | ||
from dash import Dash | ||
import dash_labs as dl | ||
import dash_bootstrap_components as dbc | ||
|
||
from dash_charlotte import themes | ||
|
||
app = Dash( | ||
name = __name__, | ||
title = 'Dash Charlotte', | ||
plugins = [dl.plugins.pages], | ||
external_stylesheets = [ | ||
dbc.themes.BOOTSTRAP, | ||
themes.BOOTSTRAP, | ||
themes.BOXICONS, | ||
themes.FONTAWESOME, | ||
themes.CHARLOTTE_LIGHT | ||
] | ||
) | ||
``` | ||
|
||
--- | ||
|
||
- Colors | ||
- [**Bootstrap**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/themes/bootstrap.py) | ||
- [**Charlotte Dark**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/themes/charlotte_dark.py) | ||
- [**Charlotte Light**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/themes/charlotte_light.py) | ||
- [**Colorblind**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/themes/colorblind.py) | ||
- [**Dracula**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/themes/dracula.py) | ||
- [**Fonts**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/themes/fonts.py) | ||
- Fire Code | ||
- Montserrat | ||
- Nunito | ||
- Poppins | ||
- Roboto | ||
- [**Icons**](https://github.com/GusFurtado/dash-charlotte/blob/main/dash_charlotte/themes/icons.py) | ||
- Bootstrap Icons | ||
- Boxicons | ||
- FontAwesome |