blob: 771fd74581fed0acecf9b6ec549d9efa9fcc0780 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--Colors-->
<!--Color of the action bar-->
<color name="colorPrimary">#1565C0</color>
<!--Color of the status bar-->
<color name="colorPrimaryDark">#104E95</color>
<!--Font color of the action bar title-->
<color name="colorActionBarTitleFont">#ffffff</color>
<!--Font color of the action bar subtitle-->
<color name="colorActionBarSubtitleFont">#cccccc</color>
<!-- action bar text colors for per state colored action bar -->
<color name="actionbar_connectivity_state_text_color_dark">@color/black800_dark</color>
<color name="actionbar_connectivity_state_text_color_light">@color/white</color>
<!-- Font color of labels in EipFragment (main screen)-->
<color name="colorEipFragmentFont">@color/black800_dark</color>
<!-- glow effect color of the on / off button -->
<color name="colorMainBtnHighlight">#58FFA9</color>
<!-- glow effect color of the on / off button if no network / traffic blocked -->
<color name="colorMainBtnError">#eF2222</color>
<!-- location button icon tint color -->
<color name="colorLocationButtonTint">@color/black</color>
<color name="colorLocationButtonTintTransparent">@color/black800_transparent</color>
<!-- pill style button text colors -->
<color name="color_font_btn_primary">@color/white</color>
<color name="color_font_btn_secondary">@color/black800</color>
<!-- button text colors in Alerts -->
<color name="color_font_btn">@color/black800</color>
</resources>
|