Results 1 to 3 of 3

Thread: Code color

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    Lieutenant Loveboy's Avatar
    Join Date
    Nov 2012
    Posts
    546
    Thanks
    229
    Thanked 72 Times in 46 Posts
    Hello!
    If you have the program Paint, then you can choose a color there.

    There is for every color 0 - 255.

    Here you can see the color purple:

    Click image for larger version. 

Name:	paint.png 
Views:	45 
Size:	101.6 KB 
ID:	701

    Red: 135
    Green: 16
    Blue: 132

    So now you have to divide it (255).

    The code is now
    Code:
    (135/255, 16/255, 132/255)
    Edit: or just do for purple:
    Code:
    (1, 0, 1)
    Last edited by Loveboy; 3rd May 2014 at 20:20.

  2. The Following User Says Thank You to Loveboy For This Useful Post:

    kung foo man (4th May 2014)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •