aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/values
diff options
context:
space:
mode:
authorpacien2023-07-30 03:06:35 +0200
committerpacien2023-07-30 03:53:20 +0200
commit550a6b1f622868f23413f08a766bee00723923bb (patch)
tree5d21eb06d0b7fdfe1c70f0595ebf178f5c87cbb5 /app/src/main/res/values
parent6077eae9077edc5b7bde4b58071a302edbb4667e (diff)
downloadtincapp-550a6b1f622868f23413f08a766bee00723923bb.tar.gz
errors: handle notifications internally
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r--app/src/main/res/values/colors.xml3
-rw-r--r--app/src/main/res/values/styles.xml6
2 files changed, 7 insertions, 2 deletions
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index 7520cd8..3d05b1c 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -2,7 +2,7 @@
2 2
3<!-- 3<!--
4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon 4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD 5 * Copyright (C) 2017-2023 Pacien TRAN-GIRARD
6 * 6 *
7 * This program is free software: you can redistribute it and/or modify 7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
@@ -25,6 +25,7 @@
25 <color name="textTitle">#FFFFFFFF</color> 25 <color name="textTitle">#FFFFFFFF</color>
26 <color name="textAccent">#007f68</color> 26 <color name="textAccent">#007f68</color>
27 <color name="textSecondary">#212121</color> 27 <color name="textSecondary">#212121</color>
28 <color name="textError">#F44336</color>
28 29
29 <color name="separator">#d9d9d9</color> 30 <color name="separator">#d9d9d9</color>
30 31
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
index fc4a6c3..171a1da 100644
--- a/app/src/main/res/values/styles.xml
+++ b/app/src/main/res/values/styles.xml
@@ -2,7 +2,7 @@
2 2
3<!-- 3<!--
4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon 4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD 5 * Copyright (C) 2017-2023 Pacien TRAN-GIRARD
6 * 6 *
7 * This program is free software: you can redistribute it and/or modify 7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
@@ -44,6 +44,10 @@
44 <item name="android:paddingTop">@dimen/activity_vertical_margin</item> 44 <item name="android:paddingTop">@dimen/activity_vertical_margin</item>
45 </style> 45 </style>
46 46
47 <style name="AppTheme.SectionTitle.Error">
48 <item name="android:textColor">@color/textError</item>
49 </style>
50
47 <style name="AppTheme.List"> 51 <style name="AppTheme.List">
48 <item name="android:layout_width">match_parent</item> 52 <item name="android:layout_width">match_parent</item>
49 <item name="android:layout_height">wrap_content</item> 53 <item name="android:layout_height">wrap_content</item>