Skip to content

Commit

Permalink
+ more contrast between foreground and background
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekBansal committed Jun 30, 2017
1 parent 1948a4f commit a75ac0f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Readme.md
Expand Up @@ -16,6 +16,11 @@ Argus Android makes it hassle free of managing all onboarding related tasks such
## Screenshots
<table>
<tr>
<td><img src="/images/ArgusLogin.png" alt="Login/Sign In" style="width: 200px;"/></td>
<td><img src="/images/ArgusSignup.png" alt="Sign Up/Register" style="width: 200px;"/></td>
<td><img src="/images/ArgusForgotPassword.png" alt="Forgot Password" style="width: 200px;"/></td>
</tr>
<tr>
<td><img src="/images/argus2.png" alt="Login/Sign In" style="width: 200px;"/></td>
<td><img src="/images/argus1.png" alt="Sign Up/Register" style="width: 200px;"/></td>
<td><img src="/images/argus3.png" alt="Forgot Password" style="width: 200px;"/></td>
Expand Down
@@ -1,6 +1,7 @@
package com.moldedbits.argus.samples.email_social_login;

import android.app.Application;
import android.graphics.drawable.ColorDrawable;

import com.moldedbits.argus.Argus;
import com.moldedbits.argus.ArgusTheme;
Expand Down Expand Up @@ -46,7 +47,7 @@ public void onCreate() {

ArgusTheme.Builder themeBuilder = new ArgusTheme.Builder();
themeBuilder.logo(R.drawable.argus_logo)
.backgroundDrawable(R.drawable.login_bg)
.backgroundDrawable(R.drawable.bg)
.buttonDrawable(R.drawable.button_bg)
.welcomeText(getString(R.string.welcome))
.welcomeTextSize(18.0f)
Expand Down
10 changes: 10 additions & 0 deletions email-social-login-sample/src/main/res/drawable/bg.xml
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<bitmap android:src="@drawable/login_bg"/>
</item>

<item>
<color android:color="@color/dark_green"/>
</item>
</layer-list>
3 changes: 2 additions & 1 deletion email-social-login-sample/src/main/res/values/colors.xml
@@ -1,10 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#1c7e78</color>
<color name="colorPrimaryDark">#186e69</color>
<color name="colorPrimaryDark">#0e4541</color>
<color name="colorAccent">#fcfcfc</color>
<color name="colorText">#f1f1f1</color>
<color name="colorBackground">#f8f8cf</color>
<color name="statusBarColor">#33f47d31</color>
<color name="buttonColor">#f58843</color>
<color name="dark_green">#af092d2a</color>
</resources>
Binary file added images/ArgusForgotPassword.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/ArgusLogin.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/ArgusSignup.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a75ac0f

Please sign in to comment.