diff options
author | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-09 19:49:48 +0000 |
---|---|---|
committer | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-09 19:49:48 +0000 |
commit | 33e446f373cc7e3992a731a9e48b024f0c423d0d (patch) | |
tree | eb2dd59e51e7496113702e1c1f90ff488e1ccefa /app/resource_bundle.cc | |
parent | 5d870f2ee49dfb4fb11b4289048547a0bd3c23e5 (diff) | |
download | chromium_src-33e446f373cc7e3992a731a9e48b024f0c423d0d.zip chromium_src-33e446f373cc7e3992a731a9e48b024f0c423d0d.tar.gz chromium_src-33e446f373cc7e3992a731a9e48b024f0c423d0d.tar.bz2 |
Change the default theme colors.
BUG=40023
TEST=Make sure toolbar is grey
Review URL: http://codereview.chromium.org/1566009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44116 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/resource_bundle.cc')
-rw-r--r-- | app/resource_bundle.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/resource_bundle.cc b/app/resource_bundle.cc index 37fc6e0..5ca0408 100644 --- a/app/resource_bundle.cc +++ b/app/resource_bundle.cc @@ -16,9 +16,9 @@ ResourceBundle* ResourceBundle::g_shared_instance_ = NULL; // TODO(glen): Finish moving these into theme provider (dialogs still // depend on these colors). const SkColor ResourceBundle::frame_color = - SkColorSetRGB(77, 139, 217); + SkColorSetRGB(66, 116, 201); const SkColor ResourceBundle::frame_color_inactive = - SkColorSetRGB(184, 209, 240); + SkColorSetRGB(161, 182, 228); const SkColor ResourceBundle::frame_color_app_panel = SK_ColorWHITE; const SkColor ResourceBundle::frame_color_app_panel_inactive = |