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
}






