https://github.com/israel-dryer/ttkbootstrap
A supercharged theme extension for tkinter that enables on-demand modern flat style themes inspired by Bootstrap.
https://github.com/israel-dryer/ttkbootstrap
gui python-gui python-gui-development python-gui-programming python-gui-tkinter themes tkinter tkinter-gui tkinter-gui-library tkinter-gui-toolkit tkinter-python ttk ttk-themes ttkthemes
Last synced: about 1 month ago
JSON representation
A supercharged theme extension for tkinter that enables on-demand modern flat style themes inspired by Bootstrap.
- Host: GitHub
- URL: https://github.com/israel-dryer/ttkbootstrap
- Owner: israel-dryer
- License: mit
- Created: 2021-03-19T21:28:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-05-10T19:24:23.000Z (about 1 month ago)
- Last Synced: 2025-05-10T19:34:24.358Z (about 1 month ago)
- Topics: gui, python-gui, python-gui-development, python-gui-programming, python-gui-tkinter, themes, tkinter, tkinter-gui, tkinter-gui-library, tkinter-gui-toolkit, tkinter-python, ttk, ttk-themes, ttkthemes
- Language: Python
- Homepage:
- Size: 42 MB
- Stars: 2,250
- Watchers: 23
- Forks: 457
- Open Issues: 66
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://pepy.tech/project/ttkbootstrap)
[](https://pepy.tech/project/ttkbootstrap)




# ttkbootstrap
English | [δΈζ](README_zh.md)ttkbootstrap is a Python library that enhances tkinter by providing modern, flat-style themes inspired by Bootstrap. Easily create stylish GUI applications with built-in themes, pre-defined widget styles, and more.
## Documentation
π Check out the [documentation](https://ttkbootstrap.readthedocs.io/en/latest/).
## Features
βοΈ [**Built-in Themes**](https://ttkbootstrap.readthedocs.io/en/latest/themes/)
Over a dozen curated dark and light themes.βοΈ [**Pre-defined Styles:**](https://ttkbootstrap.readthedocs.io/en/latest/styleguide/)
Loads of beautiful pre-defined widget styles such as **outline** and **round toggle** buttons.βοΈ [**Simple keyword API:**](https://ttkbootstrap.readthedocs.io/en/latest/gettingstarted/tutorial/#use-themed-widgets)
Apply colors and types using simple keywords such as **primary** and **striped** instead of the legacy approach of **primary.Striped.Horizontal.TProgressbar**. If you've used Bootstrap for web development, you are already familiar with this approach using css classes.βοΈ [**Lots of new Widgets:**](https://ttkbootstrap.readthedocs.io/en/latest/api/widgets/dateentry/)
ttkbootstrap comes with several new beautifully designed widgets such as **Meter**, **DateEntry**, and **Floodgauge**. Additionally, **dialogs** are now themed and fully customizable.βοΈ [**Built-in Theme Creator:**](https://ttkbootstrap.readthedocs.io/en/latest/themes/themecreator/)
Want to create your own theme? Easy! ttkboostrap includes a built-in **theme creator** that enables you to easily build, load, expore, and apply your own custom themes.## Installation
Install ttkbootstrap using pip in the terminal/command prompt!```python
python -m pip install ttkbootstrap
```## Simple Usage
Instead of using long, complicated ttk style classes, you can use simple keywords with the "bootstyle" parameter.To get started, add the import statement at the top of your file in your preferred IDE:
```python
import ttkbootstrap as ttk
```Then create a window using the ttk.Window(...) and .mainloop() commands.
And add a couple buttons (b1 and b2) to create your first window!
```python
root = ttk.Window(themename="superhero")b1 = ttk.Button(root, text="Submit", bootstyle="success")
b1.pack(side=LEFT, padx=5, pady=10)b2 = ttk.Button(root, text="Submit", bootstyle="info-outline")
b2.pack(side=LEFT, padx=5, pady=10)root.mainloop()
```
Here is the desired result:
For more detailed usage, please refer to the [**Getting Started page**](https://ttkbootstrap.readthedocs.io/en/latest/gettingstarted/tutorial/)
This page includes creating buttons, adding widgets, different styles and more.The new keyword API is very flexible. The following examples all produce the same result:
- `bootstyle="info-outline"`
- `bootstyle="info outline"`
- `bootstyle=("info", "outline")`
- `bootstyle=(INFO, OUTLINE)`## Contributing
We welcome contributions! If you'd like to contribute to ttkbootstrap, please check out our contributing guidelines.## Links
- **Documentation:** https://ttkbootstrap.readthedocs.io/en/latest/
- **GitHub:** https://github.com/israel-dryer/ttkbootstrap