A simple and lightweight Python module for easily retrieving Windows' accent color, including shades, specific window chrome colors such as active/inactive titlebar and window borders and theme. Supports Windows 8.x, 10 and 11 and doesn't require additional dependencies.
Run this command in your terminal:
pip install winaccent
To update the module, run this command:
pip install --upgrade winaccent
- Windows 8.0 or newer
- Python 3.6 or newer
Important
This is a Windows-only module. Trying to import this module on a OS other than Windows or a Windows version older than 8.0 will raise an ImportError
exception. When using this module in cross-platform applications, make sure you only import and use winaccent on Windows systems to avoid errors. Here's an example:
import sys
if sys.platform == "win32":
import winaccent
print(winaccent.accent_normal)
If you're using a Python version that supports Windows versions older than 8.0 (Python 3.8 and older), use the following example:
Show the code
import sys
if sys.platform == "win32":
# Get Windows version (major.minor)
version = sys.getwindowsversion()
current_version = float(f"{version.major}.{version.minor}")
# Check if the Windows version is greater than or equal to 6.2 (Windows 8)
# Windows 8.1 will return 6.3 and Windows 10 and 11 will return 10.0
if current_version >= 6.2:
import winaccent
print(winaccent.accent_normal)
Note
The color values and previews shown here are for Windows 11's default accent color (blue). If you have a different accent color, you'll get the color values based on your accent color.
For simplicity, you can get a specific accent color from one of the following variables:
Variable | Color | Preview |
---|---|---|
accent_dark_mode (or accent_light) |
#4CC2FF | |
accent_normal | #0078D4 | |
accent_light_mode (or accent_dark) |
#0067C0 |
If you need a different shade, you can get it from one of these variables:
Variable | Color | Preview |
---|---|---|
accent_light_3 | #99EBFF | |
accent_light_2 | #4CC2FF | |
accent_light_1 | #0091F8 | |
accent_normal | #0078D4 | |
accent_dark_1 | #0067C0 | |
accent_dark_2 | #003E92 | |
accent_dark_3 | #001A68 |
You can get the accent color used in lockscreen, UAC (Windows 10), welcome screen and start menu (Windows 8.x) and other elements using accent_menu
variable (usually it's the same color as accent_normal
, but can be modified in the registry).
Warning
The variables will return the colors in HEX color strings (e.g. #RRGGBB
). If you need an RGB tuple instead of a HEX color string, use the hex_to_rgb()
function. More information is provided in the Convert HEX color string to RGB tuple section.
Example:
import winaccent
print(winaccent.accent_light_mode) # Prints the light mode accent color
You may want to take a look at Microsoft's accent color guidelines. You can do that here.
Warning
The colors provided by these variables are the colors used by Windows to colorize the titlebar and the window borders when the "Show accent color on title bars and window borders" option is enabled in Settings.
Also, the titlebar_active
and window_border
variables don't always return the same color. The user can change the color of the titlebar or window borders from the registry.
You can get the active titlebar color from titlebar_active
variable and the inactive titlebar color from titlebar_inactive
. The window border color can be obtained from window_border
variable.
You can also check if colored titlebars are enabled using is_titlebar_colored
boolean.
Note
titlebar_inactive
will return None
if the inactive titlebar color isn't set (this is usually done via registry).
This module also allows you to check if the apps or system use the light theme or not using the apps_use_light_theme
and system_uses_light_theme
booleans. The difference between them is that apps_use_light_theme
is used to check the apps' theme and system_uses_light_theme
is used to check the theme of some system components, such as the taskbar, Start menu and others. Here's an example:
import winaccent
if winaccent.apps_use_light_theme:
print("Apps use light theme")
else:
print("Apps use dark theme")
if winaccent.system_uses_light_theme:
print("System uses light theme")
else:
print("System uses dark theme")
Note
apps_use_light_theme
and system_uses_light_theme
will always return True
on Windows 8.x.
The colors and settings values provided by this module can be updated manually using the update_values()
function. This function will retrieve them again.
This module has a function that allows you to convert a HEX color string to an RGB tuple. Useful if the GUI toolkit you're using expects using RGB tuples as colors instead of HEX string colors.
The function that does this is hex_to_rgb()
and takes hex
as an argument, where hex
is the hex string color you want to convert to an RGB tuple. Here's how you can use it:
import winaccent
# Prints (0, 120, 212) instead of #0078D4
print(winaccent.hex_to_rgb(winaccent.accent_normal))
# Prints (255, 255, 255) instead of #FFFFFF
print(winaccent.hex_to_rgb("#FFFFFF"))
This module allows you to add a listener that will call a specific function when the accent color, active/inactive titlebar color, window border color or system theme changes. Here's how you can add it:
import winaccent, threading
# Replace `callback` with the function that you want to be called
thread = threading.Thread(target = lambda: winaccent.on_appearance_changed(callback), daemon = True)
thread.start()
Note
If you added the listener, there's no need to call update_values()
because it will be called automatically every time the appearance changes.
Here's a demo:
listener_demo.mp4
To see a demo, run the following command in your terminal (winaccent must be installed):
python -m winaccent
This command has an optional --mode
argument. It can take the following values:
Value | Info |
---|---|
gui | Shows a GUI demo. The GUI demo responds to accent color changes. |
console | Shows a console demo. The console demo does not respond to accent color changes. |
auto | If tkinter is installed and works correctly, a GUI demo will be shown. If that's not the case, a console demo will be shown. |
Example usage:
python -m winaccent --mode gui
The command will run with --mode
set to auto
by default.
Here's how a GUI demo looks:
Windows version | Default colors & settings | Modified colors & settings |
---|---|---|
Windows 11 | ||
Windows 10 | ||
Windows 8 |
A console demo looks like this (for default blue accent color):
Accent palette
==============
accent_light_3: #99EBFF
accent_light_2: #4CC2FF
accent_light_1: #0091F8
accent_normal: #0078D4
accent_dark_1: #0067C0
accent_dark_2: #003E92
accent_dark_3: #001A68
Windows options
===============
is_titlebar_colored: False
titlebar_active: #0078D4
titlebar_inactive: None
window_border: #0078D4
System theme
============
apps_use_light_theme: False
system_uses_light_theme: False
Other colors
============
accent_menu: #0078D4
If you found a bug or want to make a suggestion, open a new issue. If you're ready to add a new feature or fix a bug, pull requests are welcome.
If you found this module useful, please consider starring this repository.
-
Add an accent color change listener -
Add color shades -
Add support for getting active/inactive titlebar color -
Add support for getting window border color -
Add support for Windows 8.x -
Add support for retrieving apps' and system's theme