optimize colors

This commit is contained in:
Christian Schneppe 2017-11-25 20:38:43 +01:00
parent f0aaa60581
commit 5efdeb9de7
4 changed files with 5 additions and 3 deletions

View file

@ -955,6 +955,7 @@ public class MessageAdapter extends ArrayAdapter<Message> implements CopyTextVie
} else {
viewHolder.message_box.setBackgroundResource(R.drawable.message_bubble_received_lightred);
viewHolder.encryption.setVisibility(View.VISIBLE);
viewHolder.encryption.setTextColor(activity.getWarningTextColor());
if (omemoEncryption && !message.isTrusted()) {
viewHolder.encryption.setText(R.string.not_trusted);
} else {

View file

@ -16,6 +16,6 @@
android:color="@color/grey500">
</stroke>
<solid
android:color="@color/realwhite">
android:color="@color/lightwhite">
</solid>
</shape>

View file

@ -16,6 +16,6 @@
android:color="@color/grey500">
</stroke>
<solid
android:color="@color/realwhite">
android:color="@color/lightwhite">
</solid>
</shape>

View file

@ -18,9 +18,10 @@
<color name="orange500">#ffff9800</color>
<color name="bubble">#ff2e4272</color>
<color name="realwhite">#ffffffff</color>
<color name="lightwhite">#fffafbfd</color>
<color name="lightblue">#ffd7deee</color>
<color name="lightred">#fff5d9d9</color>
<color name="lightgreen">#ffb0ecaf</color>
<color name="lightgreen">#ffcaf2ca</color>
<color name="online">#ff259b24</color>
<color name="away">#ffff9800</color>
<color name="notavailable">#fff44336</color>