Commit 6ec1e777 authored by Martin Šrámek's avatar Martin Šrámek Committed by Commit Bot

Update colors on the Desktop Incognito NTP.

Bug: 850501
Cq-Include-Trybots: luci.chromium.try:closure_compilation
Change-Id: I4dc21e7ef5cc1ca6fcde18445dfe4365febcb449
Reviewed-on: https://chromium-review.googlesource.com/1135537Reviewed-by: default avatarEvan Stade <estade@chromium.org>
Commit-Queue: Martin Šrámek <msramek@chromium.org>
Cr-Commit-Position: refs/heads/master@{#575626}
parent 9ec8cfdb
...@@ -13,15 +13,15 @@ body { ...@@ -13,15 +13,15 @@ body {
.content { .content {
/* This is identical to the default background color. It's necessary to set it /* This is identical to the default background color. It's necessary to set it
for the case when a theme with a background image is installed. */ for the case when a theme with a background image is installed. */
background-color: #303030; background-color: rgb(50, 54, 57);
color: rgba(255, 255, 255, 0.7); color: rgb(189, 193, 198);
font-size: calc(100% - 2px); font-size: calc(100% - 2px);
line-height: calc(100% + 6px); line-height: calc(100% + 6px);
min-width: 240px; min-width: 240px;
} }
h1 { h1 {
color: rgba(255, 255, 255, 0.8); color: rgb(218, 220, 224);
font-size: calc(100% + 8px); font-size: calc(100% + 8px);
font-weight: 400; font-weight: 400;
line-height: calc(100% + 8px); line-height: calc(100% + 8px);
...@@ -33,7 +33,7 @@ em { ...@@ -33,7 +33,7 @@ em {
} }
.learn-more-button { .learn-more-button {
color: rgb(123, 170, 247); color: rgb(138, 180, 248);
text-decoration: none; text-decoration: none;
} }
......
...@@ -71,10 +71,8 @@ constexpr SkColor kDefaultColorNTPText = SK_ColorBLACK; ...@@ -71,10 +71,8 @@ constexpr SkColor kDefaultColorNTPText = SK_ColorBLACK;
const SkColor kDefaultColorNTPLink = SkColorSetRGB(0x06, 0x37, 0x74); const SkColor kDefaultColorNTPLink = SkColorSetRGB(0x06, 0x37, 0x74);
#endif // OS_WIN #endif // OS_WIN
// Then new MD Incognito NTP uses a slightly different shade of black.
// TODO(msramek): Remove the old entry when the new NTP fully launches.
const SkColor kDefaultColorNTPBackgroundIncognito = const SkColor kDefaultColorNTPBackgroundIncognito =
SkColorSetRGB(0x30, 0x30, 0x30); SkColorSetRGB(0x32, 0x36, 0x39);
const SkColor kDefaultColorNTPHeader = SkColorSetRGB(0x96, 0x96, 0x96); const SkColor kDefaultColorNTPHeader = SkColorSetRGB(0x96, 0x96, 0x96);
constexpr SkColor kDefaultColorButtonBackground = SK_ColorTRANSPARENT; constexpr SkColor kDefaultColorButtonBackground = SK_ColorTRANSPARENT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment