Skip to content

Instantly share code, notes, and snippets.

@androidcodehunter
Created November 7, 2016 08:33
Show Gist options
  • Save androidcodehunter/61aeb502aca536e9ee250f22a098b613 to your computer and use it in GitHub Desktop.
Save androidcodehunter/61aeb502aca536e9ee250f22a098b613 to your computer and use it in GitHub Desktop.
<!--
android:colorAccent will affect your text colors of negative or positive buttons.
android:textColor will affect your title text color of dialog.
android:textColorPrimary will affect your message color of dialog.-->
<style name="GGDialog" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:textColor">@color/theme_blue</item>
<item name="android:background">@color/white</item>
<item name="android:textColorPrimary">@color/theme_red</item>
<item name="colorAccent">@color/theme_red</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment