• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/**
2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16export default class SettingsStyleConstants {
17  static readonly DEFAULT_DEVICE_TYPE_PHONE = 'phone';
18  static readonly DEFAULT_DEVICE_TYPE_PAD = 'pad';
19  static readonly DEFAULT_LAYOUT_FONT_COLOR = '#696969';
20  static readonly DEFAULT_BACKGROUND_COLOR = '#F0EEEE';
21  static readonly DEFAULT_DIALOG_FONT_COLOR = '#000000';
22  static readonly DEFAULT_SETTING_PAGE_COLOR = '#FFFFFF';
23  static readonly PERCENTAGE_100 = '100%';
24  static readonly PERCENTAGE_90 = '90%';
25  static readonly PERCENTAGE_85 = '85%';
26  static readonly PERCENTAGE_60 = '60%';
27  static readonly DEFAULT_VP_10 = 10;
28  static readonly DEFAULT_VP_14 = 14;
29  static readonly DEFAULT_VP_16 = 16;
30  static readonly DEFAULT_VP_20 = 20;
31  static readonly DEFAULT_VP_22 = 22;
32  static readonly DEFAULT_VP_24 = 24;
33  static readonly DEFAULT_VP_25 = 25;
34  static readonly DEFAULT_VP_28 = 28;
35  static readonly DEFAULT_VP_30 = 30;
36  static readonly DEFAULT_VP_35 = 35;
37  static readonly DEFAULT_VP_48 = 48;
38  static readonly DEFAULT_VP_80 = 80;
39  static readonly DEFAULT_VP_56 = 56;
40  static readonly DEFAULT_VP_60 = 60;
41  static readonly DEFAULT_VP_75 = 75;
42  static readonly DEFAULT_VP_100 = 100;
43  static readonly DEFAULT_VP_120 = 120;
44  static readonly DEFAULT_VP_230 = 230;
45  static readonly DEFAULT_VP_296 = 296;
46  static readonly DEFAULT_VP_340 = 340;
47  static readonly DEFAULT_VP_462 = 462;
48  static readonly DEFAULT_VP_692 = 692;
49  static readonly DEFAULT_VP_772 = 772;
50  static readonly DEFAULT_VP_812 = 812;
51}