A simple tool to track the color and coordinates of the mouse cursor in real-time. The tool allows you to capture the color and coordinates at the current mouse position and save them for later reference. The saved data includes RGB and HEX color codes, along with the respective screen coordinates.
- Track the position of the mouse cursor and the color at that position.
- Display the RGB and HEX color codes in real-time.
- Save the current coordinates and color information when pressing the 'S' key.
- Display the list of saved coordinates and colors (up to 5 entries).
- Option to start and stop the tracking process with the "Start/Stop" button.
- 10ms refresh rate for constant updates.
- Run the script by executing
python3 main.pyin your terminal or command prompt. - Press the "Start" button to begin tracking the mouse cursor.
- The coordinates and color (RGB and HEX) will be displayed on the GUI.
- Press the 'S' key to save the current color and coordinates.
- The saved data will appear in the list on the right side of the window.
- If the list exceeds 5 entries, the oldest entry will be removed.
- Press the "Stop" button to stop tracking.
- Python 3.x
pyautoguilibrarykeyboardlibrarytkinterlibrary (usually pre-installed with Python)
Contributions are welcome! Please feel free to submit a pull request.
- Fork the repository.
- Create a new branch for your feature or fix.
- Make the changes.
- Submit a pull request describing your changes.
To run this project, you need to install the required Python libraries. You can install them using pip:
pip install pyautogui keyboard
