Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
The anatomy of an Android project
  • Loading branch information
SimenCodes committed Mar 28, 2018
1 parent 4960518 commit c78c674
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/src/main/res/values/colors.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
<color name="colorPrimary">#d32f2f</color>
<color name="colorPrimaryDark">#b71c1c</color>
<color name="colorAccent">#ffc107</color>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values/styles.xml
@@ -1,7 +1,7 @@
<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<style name="AppTheme" parent="Theme.AppCompat">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
Expand Down

0 comments on commit c78c674

Please sign in to comment.