SA-MP Forums Archive
Need some beautiful colors in registration ^^ - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Need some beautiful colors in registration ^^ (/showthread.php?tid=474346)



Need some beautiful colors in registration ^^ - Riwerry - 07.11.2013

Guys, please can someone give me some colors? Which looks beautiful at register?


Re: Need some beautiful colors in registration ^^ - boomerboom - 07.11.2013

Blue.Sky blue.


Re: Need some beautiful colors in registration ^^ - Konstantinos - 07.11.2013

http://www.javascripter.net/faq/rgbtohex.htm

Play around with the values 0-255 and you can get nice combinations of colours.

Let's say you add: 255 0 0 which is red, it outputs: FF0000

Add 0x before and FF after and you're done!

pawn Код:
#define RED 0xFF0000FF
Let's try another one!

You input: 255 255 0 (yellow) and it gives FFFF00

so it becomes:
pawn Код:
#define YELLOW 0xFFFF00FF
You can now continue with your own colours!