aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Schneppe <christian.schneppe@pix-art.de>2020-02-17 21:26:43 +0100
committerChristian Schneppe <christian.schneppe@pix-art.de>2020-02-17 21:26:43 +0100
commit649a261706966ead67c42285c794c12bfaeffeae (patch)
tree412e14cf0b06a74a49c0bc5eb633195b70ceb5db
parentbb4e06c950b540582a5dc08213eaad225dc30a4a (diff)
fix some more colors for orange theme
-rw-r--r--src/main/res/layout/activity_trust_keys.xml2
-rw-r--r--src/main/res/values/themes.xml6
2 files changed, 7 insertions, 1 deletions
diff --git a/src/main/res/layout/activity_trust_keys.xml b/src/main/res/layout/activity_trust_keys.xml
index 178cd04c8..30a9d3906 100644
--- a/src/main/res/layout/activity_trust_keys.xml
+++ b/src/main/res/layout/activity_trust_keys.xml
@@ -92,7 +92,7 @@
android:paddingEnd="16dp"
android:paddingRight="16dp"
android:text="@string/disable_encryption"
- android:textColor="@color/accent" />
+ android:textColor="?attr/colorAccent" />
</LinearLayout>
</LinearLayout>
diff --git a/src/main/res/values/themes.xml b/src/main/res/values/themes.xml
index d20d1c304..dfb07ab52 100644
--- a/src/main/res/values/themes.xml
+++ b/src/main/res/values/themes.xml
@@ -336,6 +336,9 @@
<item name="color_bubble_warning">@color/lightred</item>
<item name="chat_bg">@drawable/bg_light_orange</item>
+
+ <item name="windowActionModeOverlay">true</item>
+ <item name="android:actionModeBackground">@color/accent_orange</item>
</style>
<style name="ConversationsTheme.Orange.Dark" parent="ConversationsTheme.Dark">
@@ -351,6 +354,9 @@
<item name="color_bubble_warning">@color/darkred</item>
<item name="chat_bg">@drawable/bg_dark_orange</item>
+
+ <item name="windowActionModeOverlay">true</item>
+ <item name="android:actionModeBackground">@color/accent_orange</item>
</style>
<style name="ConversationsTheme.Dialog" parent="Theme.MaterialComponents.Light.Dialog">