Skip to content

jasonvolpe/AndroidDevNotes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

Android Developer Resources

Design

Icons

Dependencies

Theme

Color Palette
<color name="primary">#444</color>
<color name="primary_dark">#222</color>
<color name="accent">#EEE</color>

<style name="AppTheme" parent="android:Theme.Material.Light">
    <!--   your app branding color for the app bar -->
    <item name="colorPrimary">@color/primary</item>
    
    <!--   darker variant for the status bar and contextual app bars -->
    <item name="colorPrimaryDark">@color/primary_dark</item>
    
    <!-- colorAccent is used as the default value for colorControlActivated,
         which is used to tint widgets and text fields -->
    <item name="colorAccent">@color/accent</item>
    
    <!-- You can also set colorControlNormal, colorControlActivated
         colorControlHighlight, and colorSwitchThumbNormal. -->
</style>

Security

About

Things about Android

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published