Skip to content

Commit

Permalink
Fix #161: Exploration player contentcard supports rich-text part -1 (#…
Browse files Browse the repository at this point in the history
…228)

* added resource files

* Update colors.xml

* corrected indentation
  • Loading branch information
veena14cs authored Oct 14, 2019
1 parent b132624 commit cb4c077
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/src/main/res/drawable/bg_blue_card.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="16dp"
android:shape="rectangle">
<stroke
android:width="2dp"
android:color="@color/blue_shade_200"/>
<corners android:radius="8dp"/>
<solid
android:color="@color/blue_shade_100"/>
</shape>
12 changes: 12 additions & 0 deletions app/src/main/res/drawable/bg_white_card.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="16dp"
android:shape="rectangle">
<stroke
android:width="2dp"
android:color="@color/black"/>
<corners android:radius="8dp"/>
<solid
android:color="@color/white"/>
</shape>
2 changes: 2 additions & 0 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@
<color name="blue_shade_20">#202D4A9D</color>
<color name="blue_shade_60">#602D4A9D</color>
<color name="grey_shade_10">#102D4A9D</color>
<color name="blue_shade_100">#0F0086FB</color>
<color name="blue_shade_200">#6B0086FB</color>
</resources>

0 comments on commit cb4c077

Please sign in to comment.