🎯 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.
.
├── debug.py # Captures coordinates and color on mouse click
└── main.py # Monitors a specific point and logs appearance/disappearance of the color
pip install pillowRun debug.py
👉 Click on the desired point — the script will show the coordinates and RGB color.
target_x, target_y = 3836, 408
target_color = (106, 179, 243)python main.pyConsole output:
[02:40:16] Color appeared
[02:53:08] Color disappeared
Great for tracking:
- UI element states
- Signals, indicators, screen markers
- Any visual changes represented by color
- Only works with screen access (including multi-monitor setups)
- Requires Python 3.7+
ImageGrabmust supportall_screens=True(Pillow ≥ 9.1.0)