Created
July 31, 2020 11:53
-
-
Save ricknout/1ac80b715657592a1bc5b4ed06f83330 to your computer and use it in GitHub Desktop.
MDC-Android type resources
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Copyright 2020 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 --> | |
<!-- In res/values/type.xml --> | |
<style name="TextAppearance.App.Headline6" parent="TextAppearance.MaterialComponents.Headline6"> | |
<item name="fontFamily">@font/roboto_mono</item> | |
... | |
</style> | |
<style name="TextAppearance.App.Body2" parent="TextAppearance.MaterialComponents.Body2"> | |
<item name="fontFamily">@font/roboto_mono</item> | |
<item name="android:textSize">14sp</item> | |
... | |
</style> | |
<style name="TextAppearance.App.Button" parent="TextAppearance.MaterialComponents.Button"> | |
<item name="fontFamily">@font/roboto_mono</item> | |
<item name="android:textAllCaps">false</item> | |
... | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment