From: rsesek Date: Sat, 15 Jul 2006 03:56:38 +0000 (+0000) Subject: Settling on the final default colour X-Git-Tag: 2.0~1 X-Git-Url: https://src.bluestatic.org/?a=commitdiff_plain;h=01a2b9072345db8bcd1e2417da49a207a741aa7f;p=rgbconverter.git Settling on the final default colour git-svn-id: svn://depot/macosx/RGBConverter/trunk@251 ad1dcce9-c9fe-0310-b82b-83ea1733dbb0 --- diff --git a/RGB Converter.wdgt/Widget.css b/RGB Converter.wdgt/Widget.css index 9a9a455..cce6877 100644 --- a/RGB Converter.wdgt/Widget.css +++ b/RGB Converter.wdgt/Widget.css @@ -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); } /* ################################################################### */ diff --git a/RGB Converter.wdgt/Widget.html b/RGB Converter.wdgt/Widget.html index 1a75934..0237cf8 100644 --- a/RGB Converter.wdgt/Widget.html +++ b/RGB Converter.wdgt/Widget.html @@ -38,11 +38,11 @@
-
HEX Code
+
HEX Code
-
Red
-
Green
-
Blue
+
Red
+
Green
+
Blue
diff --git a/RGB Converter.wdgt/Widget.js b/RGB Converter.wdgt/Widget.js index e181d89..57e95db 100644 --- a/RGB Converter.wdgt/Widget.js +++ b/RGB Converter.wdgt/Widget.js @@ -19,10 +19,10 @@ \*=====================================================================*/ var fields = { - red : 81, - green : 105, - blue : 149, - hex : '516995' + red : 60, + green : 60, + blue : 60, + hex : '3C3C3C' }; // ###################################################################