1 /*
2  * Copyright (C) 2024 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.providers.media.photopicker.util;
18 
19 /**
20  * Class holding material baseline theme color constants to be applied to the remaining
21  * picker elements when its accent color is set.
22  */
23 public class AccentColorResources {
24     public static String DARK_TEXT_COLOR = "#000000";
25     public static String LIGHT_TEXT_COLOR = "#FFFFFF";
26     public static String SURFACE_CONTAINER_COLOR_LIGHT = "#F3EDF7";
27     public static String SURFACE_CONTAINER_COLOR_DARK = "#211F26";
28     public static String SURFACE_CONTAINER_HIGHEST_LIGHT = "#E6E0E9";
29     public static String SURFACE_CONTAINER_HIGHEST_DARK = "#36343B";
30     public static String ON_SURFACE_COLOR_LIGHT = "#1D1B20";
31     public static String ON_SURFACE_COLOR_DARK = "#E6E0E9";
32     public static String ON_SURFACE_VARIANT_LIGHT = "#49454F";
33     public static String ON_SURFACE_VARIANT_DARK = "#CAC4D0";
34     public static String SURFACE_TINT_LIGHT = "#6750A4";
35     public static String SURFACE_TINT_DARK = "#D0BCFF";
36     public static String SURFACE_CONTAINER_LOW_LIGHT = "#F7F2FA";
37     public static String SURFACE_CONTAINER_LOW_DARK = "#1D1B20";
38 }
39