Well here's just a simple program made by AutoHotKey to find the color of the pixel and coord of your mouse..I don't take credit for this evanxxxm Made the script and i just made into an exe and thought i'd share it so here you go...
If you don't trust the program then heres the script:
If you don't trust the program then heres the script:
Code:
loop
{
MouseGetPos, Pxx, Pyy
; ur mouse current coordinate
PixelGetColor, color, %Pxx%, %Pyy%
; get the color hex at this point
ToolTip, x%Pxx% y%Pyy%`nColor: %color%,1,1
; display the output
sleep 300
; generate the result every 0.3 seconds
}