File: Color.h

package info (click to toggle)
android-platform-frameworks-base 1%3A7.0.0%2Br33-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 137,116 kB
  • sloc: java: 704,370; cpp: 206,670; xml: 185,778; python: 2,626; ansic: 486; sh: 291; makefile: 48; sed: 19
file content (86 lines) | stat: -rw-r--r-- 2,771 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
 * Copyright (C) 2015 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#ifndef COLOR_H
#define COLOR_H

#include <SkColor.h>

namespace android {
namespace uirenderer {
    namespace Color {
        enum Color {
            Red_500 = 0xFFF44336,
            Pink_500 = 0xFFE91E63,
            Purple_500 = 0xFF9C27B0,
            DeepPurple_500 = 0xFF673AB7,
            Indigo_500 = 0xFF3F51B5,
            Blue_500 = 0xFF2196F3,
            LightBlue_300 = 0xFF4FC3F7,
            LightBlue_500 = 0xFF03A9F4,
            Cyan_500 = 0xFF00BCD4,
            Teal_500 = 0xFF009688,
            Teal_700 = 0xFF00796B,
            Green_500 = 0xFF4CAF50,
            Green_700 = 0xFF388E3C,
            LightGreen_500 = 0xFF8BC34A,
            LightGreen_700 = 0xFF689F38,
            Lime_500 = 0xFFCDDC39,
            Yellow_500 = 0xFFFFEB3B,
            Amber_500 = 0xFFFFC107,
            Orange_500 = 0xFFFF9800,
            DeepOrange_500 = 0xFFFF5722,
            Brown_500 = 0xFF795548,
            Grey_200 = 0xFFEEEEEE,
            Grey_500 = 0xFF9E9E9E,
            Grey_700 = 0xFF616161,
            BlueGrey_500 = 0xFF607D8B,
            Transparent = 0x00000000,
            Black = 0xFF000000,
            White = 0xFFFFFFFF,
        };
    }

    static_assert(Color::White == SK_ColorWHITE, "color format has changed");
    static_assert(Color::Black == SK_ColorBLACK, "color format has changed");

    // Array of bright (500 intensity) colors for synthetic content
    static const Color::Color BrightColors[] = {
        Color::Red_500,
        Color::Pink_500,
        Color::Purple_500,
        Color::DeepPurple_500,
        Color::Indigo_500,
        Color::Blue_500,
        Color::LightBlue_500,
        Color::Cyan_500,
        Color::Teal_500,
        Color::Green_500,
        Color::LightGreen_500,
        Color::Lime_500,
        Color::Yellow_500,
        Color::Amber_500,
        Color::Orange_500,
        Color::DeepOrange_500,
        Color::Brown_500,
        Color::Grey_500,
        Color::BlueGrey_500,
    };
    static constexpr int BrightColorsCount = sizeof(BrightColors) / sizeof(Color::Color);

} /* namespace uirenderer */
} /* namespace android */

#endif /* TEST_UTILS_H */