2004-07-24 12:34:47 +00:00
|
|
|
# Rob Segal
|
|
|
|
# Lobo Lunar
|
|
|
|
# Yathosho
|
2004-07-15 17:54:08 +00:00
|
|
|
|
|
|
|
!define WHITE "FFFFFF"
|
|
|
|
!define BLACK "000000"
|
|
|
|
!define YELLOW "FFFF00"
|
|
|
|
!define RED "FF0000"
|
|
|
|
!define GREEN "00FF00"
|
|
|
|
!define BLUE "0000FF"
|
2004-07-24 12:34:47 +00:00
|
|
|
!define MAGENTA "FF00FF"
|
|
|
|
!define CYAN "00FFFF"
|
|
|
|
|
|
|
|
!macro rgb2hex output R G B
|
|
|
|
IntFmt "${output}" "%02X" "${R}"
|
|
|
|
IntFmt "${output}" "${output}%02X" "${G}"
|
|
|
|
IntFmt "${output}" "${output}%02X" "${B}"
|
|
|
|
!macroend
|