notification_theme.h 755 B

1234567891011121314151617181920212223
  1. // Copyright 2022 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 COMPONENTS_MEDIA_MESSAGE_CENTER_NOTIFICATION_THEME_H_
  5. #define COMPONENTS_MEDIA_MESSAGE_CENTER_NOTIFICATION_THEME_H_
  6. #include "base/component_export.h"
  7. #include "third_party/skia/include/core/SkColor.h"
  8. namespace media_message_center {
  9. struct COMPONENT_EXPORT(MEDIA_MESSAGE_CENTER) NotificationTheme {
  10. SkColor primary_text_color = 0;
  11. SkColor secondary_text_color = 0;
  12. SkColor enabled_icon_color = 0;
  13. SkColor disabled_icon_color = 0;
  14. SkColor separator_color = 0;
  15. };
  16. } // namespace media_message_center
  17. #endif // COMPONENTS_MEDIA_MESSAGE_CENTER_NOTIFICATION_THEME_H_