Font-based icons for Tkinter/ttkbootstrap with a built-in Bootstrap set and installable providers: Font Awesome, Material, Ionicons, Remix, Fluent, Simple, Weather, Lucide, Eva & more.
Project description
ttkbootstrap-icons
Font-based icons for Tkinter and ttkbootstrap, with a built-in Bootstrap Icons set and optional provider packages (Font Awesome, Material, Remix, Fluent, Simple, Weather, Lucide, Eva, Typicons, and more). Includes a lightweight Icon Browser to search and copy names.
Highlights
- Built-in Bootstrap Icons provider
- Install-and-use provider packages (auto-discovered)
- Simple Python API for size, color, and style
- Fast Icon Browser to preview and copy names
- Pure-Python rendering with Pillow
Documentation
Full documentation, provider list, API reference, and usage guides:
https://israel-dryer.github.io/ttkbootstrap-icons/
Install
pip install ttkbootstrap-icons
Quick start
import tkinter as tk
from ttkbootstrap_icons import BootstrapIcon
root = tk.Tk()
icon = BootstrapIcon("house", size=24, color="#0d6efd", style="fill")
tk.Label(root, image=icon.image, text=" Home", compound="left").pack(padx=10, pady=10)
root.mainloop()
Stateful Icons (v3.1.0+)
Icons can automatically change appearance based on widget states (hover, pressed, disabled, selected):
import ttkbootstrap as tb
from ttkbootstrap_icons import BootstrapIcon
app = tb.Window()
icon = BootstrapIcon("mic-mute-fill", size=64)
toggle = tb.Checkbutton(app, compound="image", bootstyle="toolbutton")
toggle.pack(padx=20, pady=20)
# Icon automatically switches to mic-fill when selected
icon.map(toggle, statespec=[("selected", {"name": "mic-fill"})])
app.mainloop()
See the Stateful Icons documentation for automatic color mapping, custom state specifications, and advanced examples.
Icon Browser
Search and preview icons across all installed providers, then copy names for use in code.
ttkbootstrap-icons
# or
python -m ttkbootstrap_icons.browser
Links
- Documentation: https://israel-dryer.github.io/ttkbootstrap-icons/
- Repository: https://github.com/israel-dryer/ttkbootstrap-icons
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ttkbootstrap_icons-3.1.0.tar.gz.
File metadata
- Download URL: ttkbootstrap_icons-3.1.0.tar.gz
- Upload date:
- Size: 274.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
435418f05b8b8ab78783859b19d580bd8e36910b3b6b9176c6aca92bfa6d4bfc
|
|
| MD5 |
a3124b828df62fa3d2dafb774142fcd2
|
|
| BLAKE2b-256 |
c74dfb4c9c9d21b1249a18ce624f7fa6784a5c4ac4dd2462d46d870fdc60f5ce
|
File details
Details for the file ttkbootstrap_icons-3.1.0-py3-none-any.whl.
File metadata
- Download URL: ttkbootstrap_icons-3.1.0-py3-none-any.whl
- Upload date:
- Size: 219.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f6fb538a0da6918a3f8bcfef72a8802e343cf15b131c80c9d5f01ef682952b4
|
|
| MD5 |
1702ecc55cffdf4ebf682f07d83ba265
|
|
| BLAKE2b-256 |
b074274af0ce603c8f44c74db3174c05a892bdf865e246a8d3c32daafd699bb8
|