Skip to content

Commit cedbc7e

Browse files
committed
Configured theme
1 parent 28f1369 commit cedbc7e

File tree

5 files changed

+51
-4
lines changed

5 files changed

+51
-4
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
/.idea/libraries
55
.DS_Store
66
/build
7-
/captures
7+
/captures

.idea/misc.xml

+27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/app.iml

+3
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dex" />
7373
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dex-cache" />
7474
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.0/jars" />
75+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/design/23.0.0/jars" />
7576
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.0/jars" />
7677
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental" />
7778
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/jacoco" />
@@ -86,11 +87,13 @@
8687
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" />
8788
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/symbols" />
8889
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
90+
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
8991
</content>
9092
<orderEntry type="jdk" jdkName="Android API 23 Platform" jdkType="Android SDK" />
9193
<orderEntry type="sourceFolder" forTests="false" />
9294
<orderEntry type="library" exported="" name="appcompat-v7-23.0.0" level="project" />
9395
<orderEntry type="library" exported="" name="support-v4-23.0.0" level="project" />
96+
<orderEntry type="library" exported="" name="design-23.0.0" level="project" />
9497
<orderEntry type="library" exported="" name="support-annotations-23.0.0" level="project" />
9598
</component>
9699
</module>

app/src/main/res/values/colors.xml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<color name="primary">#FFEB3B</color>
4+
<color name="primary_dark">#FBC02D</color>
5+
<color name="primary_light">#FFF9C4</color>
6+
<color name="accent">#536DFE</color>
7+
8+
<color name="primary_text">#212121</color>
9+
<color name="secondary_text">#727272</color>
10+
11+
<color name="icons">#212121</color>
12+
<color name="divider">#B6B6B6</color>
13+
</resources>

app/src/main/res/values/styles.xml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
<resources>
22

3-
<!-- Base application theme. -->
4-
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
5-
<!-- Customize your theme here. -->
3+
<style name="AppTheme" parent="Theme.AppCompat.Light">
4+
<item name="colorPrimary">@color/primary</item>
5+
<item name="colorPrimaryDark">@color/primary_dark</item>
6+
<item name="colorAccent">@color/accent</item>
7+
8+
<item name="android:textColorPrimary">@color/primary_text</item>
9+
<item name="android:textColorSecondary">@color/secondary_text</item>
610
</style>
711

812
</resources>

0 commit comments

Comments
 (0)