Skip to content

Instantly share code, notes, and snippets.

@timoa
Created July 10, 2015 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timoa/19ff804ed4f1bfe71565 to your computer and use it in GitHub Desktop.
Save timoa/19ff804ed4f1bfe71565 to your computer and use it in GitHub Desktop.
Titanium - Android Material Design
<!-- /platform/android/res/values/custom_theme.xml -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyCustomTheme" parent="@style/Theme.AppCompat">
<item name="colorPrimary">#86569A</item>
<item name="colorAccent">#FFFFFF</item>
<item name="android:statusBarColor">#86569A</item>
<item name="android:navigationBarColor">#86569A</item>
</style>
</resources>
[...]
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="1" android:versionName="1.0.0">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="22"/>
<application android:theme="@style/MyCustomTheme"/>
</manifest>
</android>
[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment