1/*
2 * Copyright (C) 2022 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
17export enum Color {
18  ACTIVE_POINTER = '#1967D2',
19  BOOKMARK = '#E88C65',
20  GUIDE_BAR = '#9AA0A6',
21  ACTIVE_BORDER = ACTIVE_POINTER,
22  HOVER_ELEMENT_BACKGROUND = 'rgba(127, 127, 127, 0.5)',
23  ADDED_ELEMENT_BACKGROUND = 'rgba(3, 255, 53, 0.5)',
24  DELETED_ELEMENT_BACKGROUND = 'rgba(255, 107, 107, 0.5)',
25  MODIFIED_ELEMENT_BACKGROUND = 'rgba(0, 255, 255, 0.4)',
26  TEXT_BLACK = 'rgba(0, 0, 0, 0.87)',
27  TEXT_GRAY = '#9b9b9b',
28  CHIP_BLUE = '#448aff',
29  CHIP_GREEN = '#00c853',
30  CHIP_RED = '#ff6b6b',
31  CHIP_ORANGE = '#ffaa6b',
32}
33