Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Unified Diff: ui/app_list/app_list_constants.cc

Issue 686633003: Improved appearance of app list folders. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@app-list-factor-folderimagesource
Patch Set: Do nits. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/app_list/app_list_constants.h ('k') | ui/app_list/folder_image_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/app_list_constants.cc
diff --git a/ui/app_list/app_list_constants.cc b/ui/app_list/app_list_constants.cc
index ec801f0f17d46501f21f33cd862867a3112290f8..5997aa248b1bd18fe87509e2a7066aeb1c326984 100644
--- a/ui/app_list/app_list_constants.cc
+++ b/ui/app_list/app_list_constants.cc
@@ -6,7 +6,7 @@
namespace app_list {
-const SkColor kContentsBackgroundColor = SkColorSetRGB(0xFA, 0xFA, 0xFA);
+const SkColor kContentsBackgroundColor = SkColorSetRGB(0xF5, 0xF5, 0xF5);
const SkColor kSearchBoxBackground = SK_ColorWHITE;
// In Windows, transparent background color will cause ugly text rendering,
@@ -43,7 +43,12 @@ const SkColor kGridTitleHoverColor = kGridTitleColor;
const SkColor kFolderTitleColor = SkColorSetRGB(0x33, 0x33, 0x33);
const SkColor kFolderTitleHintTextColor = SkColorSetRGB(0xA0, 0xA0, 0xA0);
// Color of the folder ink bubble.
-const SkColor kFolderBubbleColor = SkColorSetRGB(0xD7, 0xD7, 0xD7);
+const SkColor kFolderBubbleColor = SK_ColorWHITE;
+// Color of the folder bubble shadow.
+const SkColor kFolderShadowColor = SkColorSetRGB(0xBF, 0xBF, 0xBF);
+const float kFolderBubbleRadius = 22;
+const float kFolderShadowRadius = 22.5;
+const float kFolderShadowOffsetY = 1;
// Duration in milliseconds for page transition.
const int kPageTransitionDurationInMs = 180;
« no previous file with comments | « ui/app_list/app_list_constants.h ('k') | ui/app_list/folder_image_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698