1<resources>
2  <style name="ProtoLayoutFallbackTextAppearance">
3    <!-- Note that many properties are non-overridable, as they are explicitly
4         set by inflateText (e.g. bold, italic, size etc).  -->
5    <item name="android:fontFamily">sans-serif</item>
6    <item name="android:textSize">16sp</item>
7  </style>
8
9  <style name="ProtoLayoutBaseFont">
10    <item name="protoLayoutNormalFont">sans-serif</item>
11    <item name="protoLayoutMediumFont">sans-serif-medium</item>
12    <item name="protoLayoutBoldFont">sans-serif</item>
13  </style>
14
15  <style name="ProtoLayoutRobotoFont">
16    <item name="protoLayoutNormalFont">roboto-regular</item>
17    <item name="protoLayoutMediumFont">roboto-medium</item>
18    <item name="protoLayoutBoldFont">roboto-bold</item>
19  </style>
20
21  <style name="ProtoLayoutRobotoFlexFont">
22    <item name="protoLayoutNormalFont">roboto-flex</item>
23    <item name="protoLayoutMediumFont">roboto-flex</item>
24    <item name="protoLayoutBoldFont">roboto-flex</item>
25  </style>
26
27  <style name="ProtoLayoutBaseTheme">
28    <item name="protoLayoutFallbackTextAppearance">@style/ProtoLayoutFallbackTextAppearance</item>
29    <item name="protoLayoutTitleFont">@style/ProtoLayoutBaseFont</item>
30    <item name="protoLayoutBodyFont">@style/ProtoLayoutBaseFont</item>
31    <item name="protoLayoutDefaultSystemFont">@style/ProtoLayoutBaseFont</item>
32    <item name="protoLayoutRobotoFont">@style/ProtoLayoutRobotoFont</item>
33    <item name="protoLayoutRobotoFlexFont">@style/ProtoLayoutRobotoFlexFont</item>
34  </style>
35</resources>
36