Results 1 to 6 of 6

Thread: How do you find out what color a color code is?

  1. #1
    Join Date
    Jan 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Red face How do you find out what color a color code is?

    If I have a color code such as "8095010" and I wanted to find out what color that it looks like when you actually see it. How would I find out?

  2. #2
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Inputting in the DTM editor works.


    Creds to DannyRS for this wonderful sig!

  3. #3
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    Quote Originally Posted by Riteaz View Post
    If I have a color code such as "8095010" and I wanted to find out what color that it looks like when you actually see it. How would I find out?
    in your script, do:

    ColorToRGB(....);
    writeln(R);
    writeln(G);
    writeln(B);

    check it in any program you like or just google the RGB values. A "color code" is also know as a Win32 Colorref if you want it in other languages: http://msdn.microsoft.com/en-us/libr...(v=vs.85).aspx


    Edit:
    As pointed out above, you can use dtm editor. I never knew that
    I am Ggzz..
    Hackintosher

  4. #4
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Brandon View Post
    in your script, do:

    ColorToRGB(....);
    writeln(R);
    writeln(G);
    writeln(B);

    check it in any program you like or just google the RGB values. A "color code" is also know as a Win32 Colorref if you want it in other languages: http://msdn.microsoft.com/en-us/libr...(v=vs.85).aspx


    Edit:
    As pointed out above, you can use dtm editor. I never knew that
    In line with what he said, the color picker also displays the RGB values:


  5. #5
    Join Date
    Jan 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by Sjoe View Post
    Inputting in the DTM editor works.

    Thank you very much, this s what I was looking for.

  6. #6
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by Riteaz View Post
    Thank you very much, this s what I was looking for.
    No probs

    Creds to DannyRS for this wonderful sig!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

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