Skip to main content

A simple module for getting Windows' accent color

Project description

winaccent

A simple and lightweight Python module for getting Windows' accent color or a shade of it. Works on both Windows 10 and 11 and doesn't require additional dependencies.

📦 Installation

Run this command in your terminal:

pip install winaccent

📜 Documentation

Get a specific accent color

For simplicity, you can get a specific accent color from one of the following variables:

Variable Color Preview
accent_dark_mode #4CC2FF
accent_normal #0078D4
accent_light_mode #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

[!NOTE] The color previews shown here are for the Windows 11's default accent color (blue).

[!TIP] accent_dark_mode is the same thing as accent_light which is the same thing as accent_light_2. Also, accent_light_mode is the same thing as accent_dark which is the same thing as accent_dark_1.

Example:

import winaccent

print(winaccent.accent_light_mode) # Prints the light mode accent color

Here is a link for the guidelines (Microsoft Learn):

https://learn.microsoft.com/en-us/windows/apps/design/style/color#accent-color-palette

Update accent colors

The accent colors can be updated manually using the update_accent_colors() function. This function will retrieve the values again.

Accent color change listener

This module allows you to add a listener that will call a specific function when the accent color 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_accent_changed_listener(callback), daemon = True)
thread.start()

[!NOTE] If you added the listener, there's no need to call update_accent_colors() because it will be called automatically every time the accent color changes.

Here's a demo:

Listener demo

💻 Demo

To see a demo, run the following command in your terminal:

python -m winaccent

Here's a demo with 3 different accent colors:

Blue Green Red
Blue Green Red

🤩 Feedback

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 find this module useful, you can consider starring this repository.

📋 To do

  • Add an accent color change listener

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

winaccent-1.0.0.tar.gz (4.9 kB view hashes)

Uploaded Source

Built Distribution

winaccent-1.0.0-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page