diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/views/status_bubble_views.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/views/status_bubble_views.cc b/chrome/browser/views/status_bubble_views.cc index 4117cb0..c2abcb1 100644 --- a/chrome/browser/views/status_bubble_views.cc +++ b/chrome/browser/views/status_bubble_views.cc @@ -27,8 +27,9 @@ // The color of the background bubble. static const SkColor kBubbleColor = SkColorSetRGB(222, 234, 248); -// The alpha and color of the bubble's shadow. -static const SkColor kShadowColor = SkColorSetARGB(30, 0, 0, 0); +// The alpha and color of the bubble's shadow. This is a composite of the above +// background color with 30% gray. +static const SkColor kShadowColor = SkColorSetRGB(196, 206, 212); // How wide the bubble's shadow is. static const int kShadowSize = 1; |