blob: 913222749609aa8c4cf59b01d679f812e632c3c7 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/style/ash_color_provider.h"
#include <math.h>
#include "ash/constants/ash_constants.h"
#include "ash/constants/ash_features.h"
#include "ash/constants/ash_pref_names.h"
#include "ash/public/cpp/style/color_mode_observer.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "ash/wallpaper/wallpaper_controller_impl.h"
#include "base/bind.h"
#include "base/check_op.h"
#include "base/cxx17_backports.h"
#include "base/feature_list.h"
#include "base/strings/string_number_conversions.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "ui/chromeos/styles/cros_styles.h"
#include "ui/gfx/color_analysis.h"
#include "ui/gfx/color_utils.h"
#include "ui/views/animation/ink_drop_host_view.h"
namespace ash {
using ColorName = cros_styles::ColorName;
namespace {
// Opacity of the light/dark ink ripple.
constexpr float kLightInkRippleOpacity = 0.08f;
constexpr float kDarkInkRippleOpacity = 0.06f;
// The disabled color is always 38% opacity of the enabled color.
constexpr float kDisabledColorOpacity = 0.38f;
// Color of second tone is always 30% opacity of the color of first tone.
constexpr float kSecondToneOpacity = 0.3f;
// Different alpha values that can be used by Shield and Base layers.
constexpr int kAlpha20 = 51; // 20%
constexpr int kAlpha40 = 102; // 40%
constexpr int kAlpha60 = 153; // 60%
constexpr int kAlpha80 = 204; // 80%
constexpr int kAlpha90 = 230; // 90%
constexpr int kAlpha95 = 242; // 95%
// Alpha value that is used to calculate themed color. Please see function
// GetBackgroundThemedColor() about how the themed color is calculated.
constexpr int kDarkBackgroundBlendAlpha = 127; // 50%
constexpr int kLightBackgroundBlendAlpha = 127; // 50%
// The default background color that can be applied on any layer.
constexpr SkColor kBackgroundColorDefaultLight = SK_ColorWHITE;
constexpr SkColor kBackgroundColorDefaultDark = gfx::kGoogleGrey900;
// Get the corresponding ColorName for |type|. ColorName is an enum in
// cros_styles.h file that is generated from cros_colors.json5, which
// includes the color IDs and colors that will be used by ChromeOS WebUI.
ColorName TypeToColorName(AshColorProvider::ContentLayerType type) {
switch (type) {
case AshColorProvider::ContentLayerType::kTextColorPrimary:
return ColorName::kTextColorPrimary;
case AshColorProvider::ContentLayerType::kTextColorSecondary:
return ColorName::kTextColorSecondary;
case AshColorProvider::ContentLayerType::kTextColorAlert:
return ColorName::kTextColorAlert;
case AshColorProvider::ContentLayerType::kTextColorWarning:
return ColorName::kTextColorWarning;
case AshColorProvider::ContentLayerType::kTextColorPositive:
return ColorName::kTextColorPositive;
case AshColorProvider::ContentLayerType::kIconColorPrimary:
return ColorName::kIconColorPrimary;
case AshColorProvider::ContentLayerType::kIconColorAlert:
return ColorName::kIconColorAlert;
case AshColorProvider::ContentLayerType::kIconColorWarning:
return ColorName::kIconColorWarning;
case AshColorProvider::ContentLayerType::kIconColorPositive:
return ColorName::kIconColorPositive;
default:
DCHECK_EQ(AshColorProvider::ContentLayerType::kIconColorProminent, type);
return ColorName::kIconColorProminent;
}
}
// Get the color from cros_styles.h header file that is generated from
// cros_colors.json5. Colors there will also be used by ChromeOS WebUI.
SkColor ResolveColor(AshColorProvider::ContentLayerType type,
bool use_dark_color) {
return cros_styles::ResolveColor(
TypeToColorName(type), use_dark_color,
base::FeatureList::IsEnabled(
ash::features::kSemanticColorsDebugOverride));
}
// Notify all the other components besides the System UI to update on the color
// mode or theme changes. E.g, Chrome browser, WebUI. And since AshColorProvider
// is kind of NativeTheme of ChromeOS. This will notify the View::OnThemeChanged
// to live update the colors on color mode or theme changes as well.
void NotifyColorModeAndThemeChanges(bool is_dark_mode_enabled) {
auto* native_theme = ui::NativeTheme::GetInstanceForNativeUi();
native_theme->set_use_dark_colors(is_dark_mode_enabled);
native_theme->NotifyOnNativeThemeUpdated();
auto* native_theme_web = ui::NativeTheme::GetInstanceForWeb();
native_theme_web->set_preferred_color_scheme(
is_dark_mode_enabled ? ui::NativeTheme::PreferredColorScheme::kDark
: ui::NativeTheme::PreferredColorScheme::kLight);
native_theme_web->NotifyOnNativeThemeUpdated();
}
} // namespace
AshColorProvider::AshColorProvider() {
Shell::Get()->session_controller()->AddObserver(this);
}
AshColorProvider::~AshColorProvider() {
Shell::Get()->session_controller()->RemoveObserver(this);
}
// static
AshColorProvider* AshColorProvider::Get() {
return Shell::Get()->ash_color_provider();
}
// static
SkColor AshColorProvider::GetDisabledColor(SkColor enabled_color) {
return SkColorSetA(enabled_color, std::round(SkColorGetA(enabled_color) *
kDisabledColorOpacity));
}
// static
SkColor AshColorProvider::GetSecondToneColor(SkColor color_of_first_tone) {
return SkColorSetA(
color_of_first_tone,
std::round(SkColorGetA(color_of_first_tone) * kSecondToneOpacity));
}
// static
void AshColorProvider::RegisterProfilePrefs(PrefRegistrySimple* registry) {
registry->RegisterBooleanPref(prefs::kDarkModeEnabled,
kDefaultDarkModeEnabled);
registry->RegisterBooleanPref(prefs::kColorModeThemed,
kDefaultColorModeThemed);
}
void AshColorProvider::OnActiveUserPrefServiceChanged(PrefService* prefs) {
if (!features::IsDarkLightModeEnabled())
return;
active_user_pref_service_ = prefs;
pref_change_registrar_ = std::make_unique<PrefChangeRegistrar>();
pref_change_registrar_->Init(prefs);
pref_change_registrar_->Add(
prefs::kDarkModeEnabled,
base::BindRepeating(&AshColorProvider::NotifyDarkModeEnabledPrefChange,
base::Unretained(this)));
pref_change_registrar_->Add(
prefs::kColorModeThemed,
base::BindRepeating(&AshColorProvider::NotifyColorModeThemedPrefChange,
base::Unretained(this)));
// Immediately tell all the observers to load this user's saved preferences.
NotifyDarkModeEnabledPrefChange();
NotifyColorModeThemedPrefChange();
}
void AshColorProvider::OnSessionStateChanged(
session_manager::SessionState state) {
if (!features::IsDarkLightModeEnabled())
return;
NotifyDarkModeEnabledPrefChange();
NotifyColorModeThemedPrefChange();
}
SkColor AshColorProvider::GetShieldLayerColor(ShieldLayerType type) const {
return GetShieldLayerColorImpl(type, /*inverted=*/false);
}
SkColor AshColorProvider::GetBaseLayerColor(BaseLayerType type) const {
return GetBaseLayerColorImpl(type, /*inverted=*/false);
}
SkColor AshColorProvider::GetControlsLayerColor(ControlsLayerType type) const {
return GetControlsLayerColorImpl(type, IsDarkModeEnabled());
}
SkColor AshColorProvider::GetContentLayerColor(ContentLayerType type) const {
return GetContentLayerColorImpl(type, IsDarkModeEnabled());
}
SkColor AshColorProvider::GetInvertedShieldLayerColor(
ShieldLayerType type) const {
return GetShieldLayerColorImpl(type, /*inverted=*/true);
}
SkColor AshColorProvider::GetInvertedBaseLayerColor(BaseLayerType type) const {
return GetBaseLayerColorImpl(type, /*inverted=*/true);
}
SkColor AshColorProvider::GetInvertedControlsLayerColor(
ControlsLayerType type) const {
return GetControlsLayerColorImpl(type, !IsDarkModeEnabled());
}
SkColor AshColorProvider::GetInvertedContentLayerColor(
ContentLayerType type) const {
return GetContentLayerColorImpl(type, !IsDarkModeEnabled());
}
AshColorProvider::RippleAttributes AshColorProvider::GetRippleAttributes(
SkColor bg_color) const {
if (bg_color == gfx::kPlaceholderColor)
bg_color = GetBackgroundColor();
const bool is_dark = color_utils::IsDark(bg_color);
const SkColor base_color = is_dark ? SK_ColorWHITE : SK_ColorBLACK;
const float opacity =
is_dark ? kLightInkRippleOpacity : kDarkInkRippleOpacity;
return RippleAttributes(base_color, opacity, opacity);
}
SkColor AshColorProvider::GetBackgroundColor() const {
return IsThemed() ? GetBackgroundThemedColor() : GetBackgroundDefaultColor();
}
SkColor AshColorProvider::GetInvertedBackgroundColor() const {
return IsThemed() ? GetInvertedBackgroundThemedColor()
: GetInvertedBackgroundDefaultColor();
}
void AshColorProvider::DecorateInkDrop(views::InkDropHost* host,
int ink_drop_config_flags,
SkColor bg_color) {
const AshColorProvider::RippleAttributes ripple_attributes =
GetRippleAttributes(bg_color);
if (ink_drop_config_flags & kConfigBaseColor)
host->SetBaseColor(ripple_attributes.base_color);
if (ink_drop_config_flags & kConfigVisibleOpacity)
host->SetVisibleOpacity(ripple_attributes.inkdrop_opacity);
if (ink_drop_config_flags & kConfigHighlightOpacity)
host->SetHighlightOpacity(ripple_attributes.highlight_opacity);
}
void AshColorProvider::AddObserver(ColorModeObserver* observer) {
observers_.AddObserver(observer);
}
void AshColorProvider::RemoveObserver(ColorModeObserver* observer) {
observers_.RemoveObserver(observer);
}
bool AshColorProvider::IsDarkModeEnabled() const {
if (!features::IsDarkLightModeEnabled() && override_light_mode_as_default_)
return false;
// Keep colors in OOBE as LIGHT when D/L is enabled. When the feature is
// disabled, lots of colors are hard coded in OOBE for now.
if (features::IsDarkLightModeEnabled() &&
Shell::Get()->session_controller()->GetSessionState() ==
session_manager::SessionState::OOBE) {
return false;
}
// Keep it at dark mode if it is not in an active user session or
// kDarkLightMode feature is not enabled.
// TODO(minch): Besides OOBE, make LIGHT as the color mode for other
// non-active user session as well while enabling D/L feature.
if (!active_user_pref_service_ || !features::IsDarkLightModeEnabled())
return true;
return active_user_pref_service_->GetBoolean(prefs::kDarkModeEnabled);
}
bool AshColorProvider::IsThemed() const {
if (!active_user_pref_service_)
return kDefaultColorModeThemed;
return active_user_pref_service_->GetBoolean(prefs::kColorModeThemed);
}
void AshColorProvider::ToggleColorMode() {
DCHECK(active_user_pref_service_);
active_user_pref_service_->SetBoolean(prefs::kDarkModeEnabled,
!IsDarkModeEnabled());
active_user_pref_service_->CommitPendingWrite();
NotifyDarkModeEnabledPrefChange();
}
void AshColorProvider::UpdateColorModeThemed(bool is_themed) {
if (is_themed == IsThemed())
return;
DCHECK(active_user_pref_service_);
active_user_pref_service_->SetBoolean(prefs::kColorModeThemed, is_themed);
active_user_pref_service_->CommitPendingWrite();
NotifyColorModeThemedPrefChange();
}
SkColor AshColorProvider::GetShieldLayerColorImpl(ShieldLayerType type,
bool inverted) const {
constexpr int kAlphas[] = {kAlpha20, kAlpha40, kAlpha60,
kAlpha80, kAlpha90, kAlpha95};
DCHECK_LT(static_cast<size_t>(type), base::size(kAlphas));
return SkColorSetA(
inverted ? GetInvertedBackgroundColor() : GetBackgroundColor(),
kAlphas[static_cast<int>(type)]);
}
SkColor AshColorProvider::GetBaseLayerColorImpl(BaseLayerType type,
bool inverted) const {
constexpr int kAlphas[] = {kAlpha20, kAlpha40, kAlpha60, kAlpha80,
kAlpha90, kAlpha95, 0xFF};
DCHECK_LT(static_cast<size_t>(type), base::size(kAlphas));
return SkColorSetA(
inverted ? GetInvertedBackgroundColor() : GetBackgroundColor(),
kAlphas[static_cast<int>(type)]);
}
SkColor AshColorProvider::GetControlsLayerColorImpl(ControlsLayerType type,
bool use_dark_color) const {
switch (type) {
case ControlsLayerType::kHairlineBorderColor:
return use_dark_color ? SkColorSetA(SK_ColorWHITE, 0x24)
: SkColorSetA(SK_ColorBLACK, 0x24);
case ControlsLayerType::kControlBackgroundColorActive:
return use_dark_color ? gfx::kGoogleBlue300 : gfx::kGoogleBlue600;
case ControlsLayerType::kControlBackgroundColorInactive:
return use_dark_color ? SkColorSetA(SK_ColorWHITE, 0x1A)
: SkColorSetA(SK_ColorBLACK, 0x0D);
case ControlsLayerType::kControlBackgroundColorAlert:
return use_dark_color ? gfx::kGoogleRed300 : gfx::kGoogleRed600;
case ControlsLayerType::kControlBackgroundColorWarning:
return use_dark_color ? gfx::kGoogleYellow300 : gfx::kGoogleYellow600;
case ControlsLayerType::kControlBackgroundColorPositive:
return use_dark_color ? gfx::kGoogleGreen300 : gfx::kGoogleGreen600;
case ControlsLayerType::kFocusAuraColor:
return use_dark_color ? SkColorSetA(gfx::kGoogleBlue300, 0x3D)
: SkColorSetA(gfx::kGoogleBlue600, 0x3D);
case ControlsLayerType::kFocusRingColor:
return use_dark_color ? gfx::kGoogleBlue300 : gfx::kGoogleBlue600;
case ControlsLayerType::kHighlightBorderHighlightColor:
return use_dark_color ? SkColorSetA(SK_ColorWHITE, 0x14)
: SkColorSetA(SK_ColorWHITE, 0x4C);
case ControlsLayerType::kHighlightBorderBorderColor:
return use_dark_color ? GetBaseLayerColor(BaseLayerType::kTransparent80)
: SkColorSetA(SK_ColorBLACK, 0x0F);
}
}
SkColor AshColorProvider::GetContentLayerColorImpl(ContentLayerType type,
bool use_dark_color) const {
switch (type) {
case ContentLayerType::kSeparatorColor:
case ContentLayerType::kShelfHandleColor:
return use_dark_color ? SkColorSetA(SK_ColorWHITE, 0x24)
: SkColorSetA(SK_ColorBLACK, 0x24);
case ContentLayerType::kIconColorSecondary:
return gfx::kGoogleGrey500;
case ContentLayerType::kIconColorSecondaryBackground:
return use_dark_color ? gfx::kGoogleGrey100 : gfx::kGoogleGrey800;
case ContentLayerType::kAppStateIndicatorColor:
case ContentLayerType::kScrollBarColor:
case ContentLayerType::kSliderColorInactive:
case ContentLayerType::kRadioColorInactive:
return use_dark_color ? gfx::kGoogleGrey200 : gfx::kGoogleGrey700;
case ContentLayerType::kSwitchKnobColorInactive:
return use_dark_color ? gfx::kGoogleGrey400 : SK_ColorWHITE;
case ContentLayerType::kSwitchTrackColorInactive:
return GetSecondToneColor(use_dark_color ? gfx::kGoogleGrey200
: gfx::kGoogleGrey700);
case ContentLayerType::kButtonLabelColorBlue:
case ContentLayerType::kTextColorURL:
case ContentLayerType::kSliderColorActive:
case ContentLayerType::kRadioColorActive:
case ContentLayerType::kSwitchKnobColorActive:
case ContentLayerType::kProgressBarColorForeground:
return use_dark_color ? gfx::kGoogleBlue300 : gfx::kGoogleBlue600;
case ContentLayerType::kProgressBarColorBackground:
return SkColorSetA(
use_dark_color ? gfx::kGoogleBlue300 : gfx::kGoogleBlue600, 0x4C);
case ContentLayerType::kSwitchTrackColorActive:
return GetSecondToneColor(GetContentLayerColorImpl(
ContentLayerType::kSwitchKnobColorActive, use_dark_color));
case ContentLayerType::kButtonLabelColorPrimary:
case ContentLayerType::kButtonIconColorPrimary:
case ContentLayerType::kBatteryBadgeColor:
return use_dark_color ? gfx::kGoogleGrey900 : gfx::kGoogleGrey200;
case ContentLayerType::kAppStateIndicatorColorInactive:
return GetDisabledColor(GetContentLayerColorImpl(
ContentLayerType::kAppStateIndicatorColor, use_dark_color));
case ContentLayerType::kCurrentDeskColor:
return use_dark_color ? SK_ColorWHITE : SK_ColorBLACK;
case ContentLayerType::kSwitchAccessInnerStrokeColor:
return gfx::kGoogleBlue300;
case ContentLayerType::kSwitchAccessOuterStrokeColor:
return gfx::kGoogleBlue900;
case ContentLayerType::kHighlightColorHover:
return use_dark_color ? SkColorSetA(SK_ColorWHITE, 0x0D)
: SkColorSetA(SK_ColorBLACK, 0x14);
case ContentLayerType::kButtonIconColor:
case ContentLayerType::kButtonLabelColor:
return use_dark_color ? gfx::kGoogleGrey200 : gfx::kGoogleGrey900;
default:
return ResolveColor(type, use_dark_color);
}
}
SkColor AshColorProvider::GetBackgroundDefaultColor() const {
return IsDarkModeEnabled() ? kBackgroundColorDefaultDark
: kBackgroundColorDefaultLight;
}
SkColor AshColorProvider::GetInvertedBackgroundDefaultColor() const {
return !IsDarkModeEnabled() ? kBackgroundColorDefaultDark
: kBackgroundColorDefaultLight;
}
SkColor AshColorProvider::GetBackgroundThemedColor() const {
return GetBackgroundThemedColorImpl(GetBackgroundDefaultColor(),
IsDarkModeEnabled());
}
SkColor AshColorProvider::GetInvertedBackgroundThemedColor() const {
return GetBackgroundThemedColorImpl(GetInvertedBackgroundDefaultColor(),
!IsDarkModeEnabled());
}
SkColor AshColorProvider::GetBackgroundThemedColorImpl(
SkColor default_color,
bool use_dark_color) const {
WallpaperControllerImpl* wallpaper_controller =
Shell::Get()->wallpaper_controller();
if (!wallpaper_controller)
return default_color;
color_utils::LumaRange luma_range = use_dark_color
? color_utils::LumaRange::DARK
: color_utils::LumaRange::LIGHT;
SkColor muted_color =
wallpaper_controller->GetProminentColor(color_utils::ColorProfile(
luma_range, color_utils::SaturationRange::MUTED));
if (muted_color == kInvalidWallpaperColor)
return default_color;
return color_utils::GetResultingPaintColor(
SkColorSetA(use_dark_color ? SK_ColorBLACK : SK_ColorWHITE,
use_dark_color ? kDarkBackgroundBlendAlpha
: kLightBackgroundBlendAlpha),
muted_color);
}
void AshColorProvider::NotifyDarkModeEnabledPrefChange() {
const bool is_enabled = IsDarkModeEnabled();
for (auto& observer : observers_)
observer.OnColorModeChanged(is_enabled);
NotifyColorModeAndThemeChanges(IsDarkModeEnabled());
}
void AshColorProvider::NotifyColorModeThemedPrefChange() {
const bool is_themed = IsThemed();
for (auto& observer : observers_)
observer.OnColorModeThemed(is_themed);
NotifyColorModeAndThemeChanges(IsDarkModeEnabled());
}
} // namespace ash