tags:

views:

88

answers:

4

i would want to type in something like this: #a6e2a6 and see the actual color

+1  A: 

ColorPicker is nice for that.

Pekka
+3  A: 

There are several. ColorSpire, for example -- which also allows you to build up swatches into a site colour scheme.

Steve Gilham
A: 

You can try http://html-color-codes.info/ there is a colour picker below which you can use to paste your code and see the colour. It's green fyi.

By the way, it won't that you that long to write a simple HTML page right?

Simply write something like this and open it up in the browser:

<!DOCTYPE html>
<html>
  <head>
    <title></title>
    <style type="text/css"><!--
      #colordisp{background: #a6e2a6; width:200px;height:200px;}
    --></style>
  </head>
  <body>
    <div id="colordisp"></div>
  </body>
</html>
thephpdeveloper
I was going to say something similar, but Steve's suggestion of ColorSpire convinced me: It's simpler, cooler and more versatile. When you're writing a program to bring about World Peace, you don't have time to write a HTML test page! ;)
Carl Smotricz
Yep that's a cool site. Well about the html test page.... COPY IT FROM THIS ANSWER! =D
thephpdeveloper
+2  A: 

Check out Kuler. In my opinion; the coolest coler-app out there.

roosteronacid