blob: a14ca4421de6ad2e17b89bdb85b92ea70c98d724 (
plain) (
blame)
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
|
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="isTablet">false</bool>
<declare-styleable name="FontStyle">
<attr name="font_default" format="dimension"/>
<attr name="font_10" format="dimension"/>
<attr name="font_12" format="dimension"/>
<attr name="font_16" format="dimension"/>
<attr name="font_18" format="dimension"/>
<attr name="font_20" format="dimension"/>
</declare-styleable>
<declare-styleable name="TitleFontStyle">
<attr name="title_font_default" format="dimension"/>
<attr name="title_font_12" format="dimension"/>
<attr name="title_font_16" format="dimension"/>
<attr name="title_font_18" format="dimension"/>
<attr name="title_font_20" format="dimension"/>
</declare-styleable>
<declare-styleable name="ContentFontStyle">
<attr name="content_font_default" format="dimension"/>
<attr name="content_font_12" format="dimension"/>
<attr name="content_font_16" format="dimension"/>
<attr name="content_font_18" format="dimension"/>
<attr name="content_font_20" format="dimension"/>
</declare-styleable>
<declare-styleable name="FontFamily">
<attr name="font_family" format="reference"/>
</declare-styleable>
<declare-styleable name="TitleFontFamily">
<attr name="title_font_family" format="reference"/>
</declare-styleable>
<declare-styleable name="ContentFontFamily">
<attr name="content_font_family" format="reference"/>
</declare-styleable>
<declare-styleable name="Theme">
<attr name="colorPrimary" format="color"/>
<attr name="colorPrimaryDark" format="color"/>
<attr name="colorAccent" format="color"/>
<attr name="colorPrimaryLightTheme" format="color"/>
<attr name="primaryTextColor" format="color"/>
<attr name="secondaryTextColor" format="color"/>
<attr name="backgroundColor" format="color"/>
<attr name="cardViewBackgroundColor" format="color"/>
</declare-styleable>
</resources>
|