Skip to content

Commit 7b41b40

Browse files
committed
Make all links in README relative.
1 parent cc734cd commit 7b41b40

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Owl/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ Owl uses Material Theming to customize the app’s [color](https://material.io/d
1414
### Color
1515
<img src="screenshots/color_header.png" width="700" alt="Owl color theming"/>
1616

17-
Owl has three primary colors which are used to create distinct visual themes for each section. See [color.xml](https://github.com/material-components/material-components-android-examples/blob/develop/Owl/app/src/main/res/values/color.xml) for the full color scheme and how colors are applied across [default](https://github.com/material-components/material-components-android-examples/blob/develop/Owl/app/src/main/res/values/theme.xml#L58-L86) and [dark](https://github.com/material-components/material-components-android-examples/blob/develop/Owl/app/src/main/res/values-night/theme.xml) themes.
17+
Owl has three primary colors which are used to create distinct visual themes for each section. See [color.xml](Owl/app/src/main/res/values/color.xml) for the full color scheme and how colors are applied across [default](Owl/app/src/main/res/values/theme.xml#L58-L86) and [dark](Owl/app/src/main/res/values-night/theme.xml) themes.
1818

1919
### Shape
2020
<img src="screenshots/shape_header.png" width="700" alt="Owl shape theming"/>
2121

22-
Owl defines small, medium and large shape categories for different sized components. See [shape.xml](https://github.com/material-components/material-components-android-examples/blob/develop/Owl/app/src/main/res/values/shape.xml) which defines the `ShapeAppearance`s, which are then [set in the theme](https://github.com/material-components/material-components-android-examples/blob/develop/Owl/app/src/main/res/values/theme.xml#L20-L23) and picked up by all components or referred to directly.
22+
Owl defines small, medium and large shape categories for different sized components. See [shape.xml](Owl/app/src/main/res/values/shape.xml) which defines the `ShapeAppearance`s, which are then [set in the theme](Owl/app/src/main/res/values/theme.xml#L20-L23) and picked up by all components or referred to directly.
2323

2424
### Typography
2525
<img src="screenshots/type_header.png" width="700" alt="Owl typography theming"/>
2626

27-
Owl’s type scale provides the typographic variety necessary for the app content. All items in the type scale use [Rubik](https://fonts.google.com/specimen/Rubik) as the typeface, and make use of the variety of weights available by using Rubik Regular, Medium, and Bold. See [type.xml](https://github.com/material-components/material-components-android-examples/blob/develop/Owl/app/src/main/res/values/type.xml) which defines `TextAppearance`s which are then [set in the theme](https://github.com/material-components/material-components-android-examples/blob/develop/Owl/app/src/main/res/values/theme.xml#L25-L38) and referred to using `?attr/textAppearance[...]` throughout.
27+
Owl’s type scale provides the typographic variety necessary for the app content. All items in the type scale use [Rubik](https://fonts.google.com/specimen/Rubik) as the typeface, and make use of the variety of weights available by using Rubik Regular, Medium, and Bold. See [type.xml](Owl/app/src/main/res/values/type.xml) which defines `TextAppearance`s which are then [set in the theme](Owl/app/src/main/res/values/theme.xml#L25-L38) and referred to using `?attr/textAppearance[...]` throughout.
2828

2929
## License
3030

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
The apps in this repository are Android implementations of fictional [Material Studies](https://material.io/design/material-studies/). Each one is built using the [MDC-Android library](http://github.com/material-components/material-components-android/) and showcases customizations of color, typography, and shape made with [Material Theming](https://material.io/design/material-theming/).
66

7-
* [Reply](https://github.com/material-components/material-components-android-examples/tree/develop/Reply)
8-
* [Owl](https://github.com/material-components/material-components-android-examples/tree/develop/Owl)
7+
* [Reply](Reply)
8+
* [Owl](Owl)
99
* [Coming Soon] Basil
1010

1111
## License

Reply/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ Reply uses Material Theming to customize the app’s [color](https://material.io
1515
### Color
1616
<img src="screenshots/color_header.png" width="700" alt="Reply color theming"/>
1717

18-
Reply uses a simple, subtle color scheme to save emphasis for email content. Reply’s color palette is defined in [color.xml](https://github.com/material-components/material-components-android-examples/blob/develop/Reply/app/src/main/res/values/color.xml) and applied globally via the app’s [default](https://github.com/material-components/material-components-android-examples/blob/develop/Reply/app/src/main/res/values/themes.xml#L23-L37) and [dark](https://github.com/material-components/material-components-android-examples/blob/develop/Reply/app/src/main/res/values-night/themes.xml#L22-L36) themes.
18+
Reply uses a simple, subtle color scheme to save emphasis for email content. Reply’s color palette is defined in [color.xml](Reply/app/src/main/res/values/color.xml) and applied globally via the app’s [default](Reply/app/src/main/res/values/themes.xml#L23-L37) and [dark](Reply/app/src/main/res/values-night/themes.xml#L22-L36) themes.
1919

2020
### Typography
2121
<img src="screenshots/typography_header.png" width="700" alt="Reply typography theming"/>
2222

2323
Reply uses [Work Sans](https://fonts.google.com/specimen/Work+Sans)
24-
as its typeface. All items in the type scale provide the typographic variety necessary for Reply’s content. See [type.xml](https://github.com/material-components/material-components-android-examples/blob/develop/Reply/app/src/main/res/values/type.xml) which defines `TextAppearance`s which are then [set in the theme](https://github.com/material-components/material-components-android-examples/blob/develop/Reply/app/src/main/res/values/themes.xml#L48-L59) and referred to using `?attr/textAppearance[...]` throughout.
24+
as its typeface. All items in the type scale provide the typographic variety necessary for Reply’s content. See [type.xml](Reply/app/src/main/res/values/type.xml) which defines `TextAppearance`s which are then [set in the theme](Reply/app/src/main/res/values/themes.xml#L48-L59) and referred to using `?attr/textAppearance[...]` throughout.
2525

2626
### Shape
2727
<img src="screenshots/shape_header.png" width="700" alt="Reply shape theming"/>
2828

29-
Reply defines small, medium, and large shape categories for different sized components. See [shape.xml](https://github.com/material-components/material-components-android-examples/blob/develop/Reply/app/src/main/res/values/shape.xml) which defines the `ShapeAppearance`s, which are then [set in the theme](https://github.com/material-components/material-components-android-examples/blob/develop/Reply/app/src/main/res/values/themes.xml#L43-L45) and picked up by all components or referred to directly.
29+
Reply defines small, medium, and large shape categories for different sized components. See [shape.xml](Reply/app/src/main/res/values/shape.xml) which defines the `ShapeAppearance`s, which are then [set in the theme](Reply/app/src/main/res/values/themes.xml#L43-L45) and picked up by all components or referred to directly.
3030

3131
## License
3232

0 commit comments

Comments
 (0)