├── .gitignore ├── .idea ├── .name ├── codeStyles │ └── Project.xml ├── compiler.xml ├── encodings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── .project ├── app ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── hugomatilla │ │ └── android_theming_typography │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── hugomatilla │ │ │ └── android_theming_typography │ │ │ ├── MainActivity.kt │ │ │ └── SimpleFragment.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_baseline_widgets_24dp.xml │ │ ├── ic_brush_24dp.xml │ │ ├── ic_child_care_24dp.xml │ │ ├── ic_format_size_24dp.xml │ │ ├── ic_launcher_background.xml │ │ └── ic_widgets_24dp.xml │ │ ├── font │ │ ├── comic_neue.xml │ │ ├── comic_neue_bold.ttf │ │ ├── comic_neue_italic.ttf │ │ ├── comic_neue_light.ttf │ │ └── comic_neue_regular.ttf │ │ ├── layout │ │ ├── activity_main.xml │ │ └── fragment_simple.xml │ │ ├── menu │ │ └── bottom_navigation_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── themes.xml │ │ └── types.xml │ └── test │ └── java │ └── com │ └── hugomatilla │ └── android_theming_typography │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── imgs ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app_list.jpg ├── app_overlays.jpg ├── app_simple.jpg ├── app_widgets.jpg ├── app_widgetsAll.jpg ├── appcompat-styles.png ├── find-style.gif ├── font-folder.png ├── main.jpg ├── res-folders.png ├── type-scale-sample.png ├── type-scale.png └── widgets.jpg ├── readme.md ├── settings.gradle └── typescale ├── .classpath ├── .gitignore ├── .project ├── .settings └── org.eclipse.buildship.core.prefs ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src ├── androidTest └── java │ └── com │ └── hugomatilla │ └── android_theming_typography │ └── typescale │ └── ExampleInstrumentedTest.kt ├── main ├── AndroidManifest.xml ├── java │ └── com │ │ └── hugomatilla │ │ └── android_theming_typography │ │ └── typescale │ │ ├── CustomTypesFragment.kt │ │ ├── TypeScaleFragment.kt │ │ └── WidgetsTypesFragment.kt └── res │ ├── font │ ├── chakra_petch.xml │ ├── chakra_petch_bold.ttf │ ├── chakra_petch_italic.ttf │ ├── chakra_petch_light.ttf │ └── chakra_petch_regular.ttf │ ├── layout │ ├── fragment_custom.xml │ ├── fragment_scale.xml │ └── fragment_widgets.xml │ ├── menu │ └── main.xml │ └── values │ ├── strings.xml │ ├── themes.xml │ └── types.xml └── test └── java └── com └── hugomatilla └── android_theming_typography └── typescale └── ExampleUnitTest.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Android-Theming-Typography -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/.project -------------------------------------------------------------------------------- /app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/.classpath -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/.project -------------------------------------------------------------------------------- /app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/hugomatilla/android_theming_typography/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/androidTest/java/com/hugomatilla/android_theming_typography/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/hugomatilla/android_theming_typography/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/java/com/hugomatilla/android_theming_typography/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hugomatilla/android_theming_typography/SimpleFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/java/com/hugomatilla/android_theming_typography/SimpleFragment.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_widgets_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/drawable/ic_baseline_widgets_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brush_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/drawable/ic_brush_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_child_care_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/drawable/ic_child_care_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_format_size_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/drawable/ic_format_size_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_widgets_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/drawable/ic_widgets_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/font/comic_neue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/font/comic_neue.xml -------------------------------------------------------------------------------- /app/src/main/res/font/comic_neue_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/font/comic_neue_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/comic_neue_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/font/comic_neue_italic.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/comic_neue_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/font/comic_neue_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/comic_neue_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/font/comic_neue_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/layout/fragment_simple.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/bottom_navigation_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/menu/bottom_navigation_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/main/res/values/types.xml -------------------------------------------------------------------------------- /app/src/test/java/com/hugomatilla/android_theming_typography/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/app/src/test/java/com/hugomatilla/android_theming_typography/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/gradlew.bat -------------------------------------------------------------------------------- /imgs/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /imgs/app_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/app_list.jpg -------------------------------------------------------------------------------- /imgs/app_overlays.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/app_overlays.jpg -------------------------------------------------------------------------------- /imgs/app_simple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/app_simple.jpg -------------------------------------------------------------------------------- /imgs/app_widgets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/app_widgets.jpg -------------------------------------------------------------------------------- /imgs/app_widgetsAll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/app_widgetsAll.jpg -------------------------------------------------------------------------------- /imgs/appcompat-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/appcompat-styles.png -------------------------------------------------------------------------------- /imgs/find-style.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/find-style.gif -------------------------------------------------------------------------------- /imgs/font-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/font-folder.png -------------------------------------------------------------------------------- /imgs/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/main.jpg -------------------------------------------------------------------------------- /imgs/res-folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/res-folders.png -------------------------------------------------------------------------------- /imgs/type-scale-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/type-scale-sample.png -------------------------------------------------------------------------------- /imgs/type-scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/type-scale.png -------------------------------------------------------------------------------- /imgs/widgets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/imgs/widgets.jpg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/readme.md -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/settings.gradle -------------------------------------------------------------------------------- /typescale/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/.classpath -------------------------------------------------------------------------------- /typescale/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /typescale/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/.project -------------------------------------------------------------------------------- /typescale/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /typescale/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/build.gradle -------------------------------------------------------------------------------- /typescale/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescale/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/proguard-rules.pro -------------------------------------------------------------------------------- /typescale/src/androidTest/java/com/hugomatilla/android_theming_typography/typescale/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/androidTest/java/com/hugomatilla/android_theming_typography/typescale/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /typescale/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /typescale/src/main/java/com/hugomatilla/android_theming_typography/typescale/CustomTypesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/java/com/hugomatilla/android_theming_typography/typescale/CustomTypesFragment.kt -------------------------------------------------------------------------------- /typescale/src/main/java/com/hugomatilla/android_theming_typography/typescale/TypeScaleFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/java/com/hugomatilla/android_theming_typography/typescale/TypeScaleFragment.kt -------------------------------------------------------------------------------- /typescale/src/main/java/com/hugomatilla/android_theming_typography/typescale/WidgetsTypesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/java/com/hugomatilla/android_theming_typography/typescale/WidgetsTypesFragment.kt -------------------------------------------------------------------------------- /typescale/src/main/res/font/chakra_petch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/font/chakra_petch.xml -------------------------------------------------------------------------------- /typescale/src/main/res/font/chakra_petch_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/font/chakra_petch_bold.ttf -------------------------------------------------------------------------------- /typescale/src/main/res/font/chakra_petch_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/font/chakra_petch_italic.ttf -------------------------------------------------------------------------------- /typescale/src/main/res/font/chakra_petch_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/font/chakra_petch_light.ttf -------------------------------------------------------------------------------- /typescale/src/main/res/font/chakra_petch_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/font/chakra_petch_regular.ttf -------------------------------------------------------------------------------- /typescale/src/main/res/layout/fragment_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/layout/fragment_custom.xml -------------------------------------------------------------------------------- /typescale/src/main/res/layout/fragment_scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/layout/fragment_scale.xml -------------------------------------------------------------------------------- /typescale/src/main/res/layout/fragment_widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/layout/fragment_widgets.xml -------------------------------------------------------------------------------- /typescale/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /typescale/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /typescale/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /typescale/src/main/res/values/types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/main/res/values/types.xml -------------------------------------------------------------------------------- /typescale/src/test/java/com/hugomatilla/android_theming_typography/typescale/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoMatilla/Android-Design-System-and-Theming-Typography/HEAD/typescale/src/test/java/com/hugomatilla/android_theming_typography/typescale/ExampleUnitTest.kt --------------------------------------------------------------------------------