Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

ColorTrack

🎯 ColorTrack — a utility for tracking the appearance or disappearance of a specified pixel color on the screen. Useful for monitoring visual indicators in any applications or interfaces.


📦 Contents

.
├── debug.py      # Captures coordinates and color on mouse click
└── main.py       # Monitors a specific point and logs appearance/disappearance of the color

🚀 Installation

pip install pillow

🧠 Usage

1. Get the coordinates and color

Run debug.py 👉 Click on the desired point — the script will show the coordinates and RGB color.

2. Insert the coordinates and color into main.py

target_x, target_y = 3836, 408
target_color = (106, 179, 243)

3. Start monitoring

python main.py

Console output:

[02:40:16] Color appeared
[02:53:08] Color disappeared

📎 Use Cases

Great for tracking:

  • UI element states
  • Signals, indicators, screen markers
  • Any visual changes represented by color

⚠️ Notes

  • Only works with screen access (including multi-monitor setups)
  • Requires Python 3.7+
  • ImageGrab must support all_screens=True (Pillow ≥ 9.1.0)

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages