Skip to content

Instantly share code, notes, and snippets.

@ssindher11
Created January 26, 2020 13:33
Show Gist options
  • Save ssindher11/74041c4d6186d974a837f0e0255902cf to your computer and use it in GitHub Desktop.
Save ssindher11/74041c4d6186d974a837f0e0255902cf to your computer and use it in GitHub Desktop.
Values files for the Chirp Tutorial app
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<color name="colorPrimary">#454545</color>
<color name="colorPrimaryDark">#303030</color>
<color name="colorAccent">#39C79D</color>
<color name="colorPrimaryDarkAlpha">#CC303030</color>
<color name="mtrl_textinput_default_box_stroke_color" tools:override="true">@color/colorAccent</color>
</resources>
<resources>
<string name="app_name">ChirpTut</string>
<string name="send_key">Send Key</string>
<string name="key">Key</string>
<string name="send">SEND</string>
<string name="received_key">Received Key:</string>
<string name="receive_key">Receive Key</string>
<string name="welcome_to_chirp">Welcome to Chirp</string>
<string name="receive">Receive</string>
</resources>
<resources>
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment