default_color_constants.h 1.2 KB

12345678910111213141516171819202122232425262728
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef ASH_STYLE_DEFAULT_COLOR_CONSTANTS_H_
  5. #define ASH_STYLE_DEFAULT_COLOR_CONSTANTS_H_
  6. #include "ui/gfx/color_palette.h"
  7. // Colors that can't be found in AshColorProvider. This is used to keep the UI
  8. // element's current look before launching dark/light mode. Using this together
  9. // with the Deprecated* functions inside default_colors.h file. Note: This file
  10. // will be removed once enabled dark/light mode.
  11. // Colors for power button menu.
  12. constexpr SkColor kPowerButtonMenuFullscreenShieldColor = SK_ColorBLACK;
  13. // Colors for back gesture.
  14. constexpr SkColor kArrowColorBeforeActivated = gfx::kGoogleBlue600;
  15. constexpr SkColor kArrowColorAfterActivated = gfx::kGoogleGrey100;
  16. const SkColor kBackgroundColorBeforeActivated = SK_ColorWHITE;
  17. const SkColor kBackgroundColorAfterActivated = gfx::kGoogleBlue600;
  18. // Colors for back gesture nudge.
  19. constexpr SkColor kCircleColor = SK_ColorWHITE;
  20. constexpr SkColor kLabelBackgroundColor = SkColorSetA(SK_ColorBLACK, 0xDE);
  21. #endif // ASH_STYLE_DEFAULT_COLOR_CONSTANTS_H_