Settling on the final default colour
authorrsesek <rsesek@ad1dcce9-c9fe-0310-b82b-83ea1733dbb0>
Sat, 15 Jul 2006 03:56:38 +0000 (03:56 +0000)
committerrsesek <rsesek@ad1dcce9-c9fe-0310-b82b-83ea1733dbb0>
Sat, 15 Jul 2006 03:56:38 +0000 (03:56 +0000)
git-svn-id: svn://depot/macosx/RGBConverter/trunk@251 ad1dcce9-c9fe-0310-b82b-83ea1733dbb0

RGB Converter.wdgt/Widget.css
RGB Converter.wdgt/Widget.html
RGB Converter.wdgt/Widget.js

index 9a9a4559e5abd3a261152b463ad2da677d5a4a7f..cce6877c585fe9a90a524b28613439a7c12d7a9a 100644 (file)
@@ -101,7 +101,7 @@ a
        height: 35px;
        width: 65px;
        
-       background-color: rgb(81, 105, 149);
+       background-color: rgb(60, 60, 60);
 }
 
 #swatch-red
@@ -114,7 +114,7 @@ a
        height: 35px;
        width: 100px;
        
-       background-color: rgb(81, 0, 0);
+       background-color: rgb(60, 0, 0);
 }
 
 #swatch-green
@@ -127,7 +127,7 @@ a
        height: 35px;
        width: 100px;
        
-       background-color: rgb(0, 105, 0);
+       background-color: rgb(0, 60, 0);
 }
 
 #swatch-blue
@@ -140,7 +140,7 @@ a
        height: 35px;
        width: 100px;
        
-       background-color: rgb(0, 0, 149);
+       background-color: rgb(0, 0, 60);
 }
 
 /* ################################################################### */
index 1a75934c0aa722f1e72e33086ab15504eafa25d7..0237cf80a04cc80a6fad0b745a3c6fe27336166b 100644 (file)
        <!-- front -->
     <div id="front" onmousemove="mousemove(event);" onmouseout="mouseexit(event);">
     
-               <div id="hexinput">HEX Code <input type="text" name="hexinput" id="hexinputf" size="6" maxlength="6" onblur="hexwatcher()" value="516995" /></div>
+               <div id="hexinput">HEX Code <input type="text" name="hexinput" id="hexinputf" size="6" maxlength="6" onblur="hexwatcher()" value="3C3C3C" /></div>
                
-               <div id="redinput">Red <input type="text" name="redinput" id="redinputf" size="3" maxlength="3" onblur="rgbwatcher('red')" value="81" /></div>
-               <div id="greeninput">Green <input type="text" name="greeninput" id="greeninputf" size="3" maxlength="3" onblur="rgbwatcher('green')" value="105" /></div>
-               <div id="blueinput">Blue <input type="text" name="blueinput" id="blueinputf" size="3" maxlength="3" onblur="rgbwatcher('blue')" value="149" /></div>
+               <div id="redinput">Red <input type="text" name="redinput" id="redinputf" size="3" maxlength="3" onblur="rgbwatcher('red')" value="60" /></div>
+               <div id="greeninput">Green <input type="text" name="greeninput" id="greeninputf" size="3" maxlength="3" onblur="rgbwatcher('green')" value="60" /></div>
+               <div id="blueinput">Blue <input type="text" name="blueinput" id="blueinputf" size="3" maxlength="3" onblur="rgbwatcher('blue')" value="60" /></div>
                
                <div id="swatch"></div>
                <div id="swatch-red"></div>
index e181d89fbaa8eb624ab5a016b4e441dca826aa68..57e95db4d2ab7aa7c502dd673d670f63484f8b74 100644 (file)
 \*=====================================================================*/
 
 var fields = {
-       red : 81,
-       green : 105,
-       blue : 149,
-       hex : '516995'
+       red : 60,
+       green : 60,
+       blue : 60,
+       hex : '3C3C3C'
 };
 
 // ###################################################################