2019-04-24 09:32:19 +03:00
|
|
|
<!--
|
|
|
|
~ Nextcloud Talk application
|
|
|
|
~
|
|
|
|
~ @author Mario Danic
|
|
|
|
~ Copyright (C) 2017-2019 Mario Danic <mario@lovelyhq.com>
|
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<resources>
|
2017-10-23 13:40:38 +03:00
|
|
|
|
|
|
|
<!-- Base application theme. -->
|
2018-11-28 18:37:25 +03:00
|
|
|
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
|
2017-10-23 13:40:38 +03:00
|
|
|
<!-- Customize your theme here. -->
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
2018-05-04 16:35:03 +03:00
|
|
|
<item name="colorAccent">@color/colorPrimary</item>
|
2019-01-02 02:41:35 +03:00
|
|
|
<item name="android:panelFullBackground">@color/colorPrimary</item>
|
2019-04-07 07:41:45 +03:00
|
|
|
<item name="android:itemBackground">@color/nc_outcoming_text_default</item>
|
2019-05-31 11:21:14 +03:00
|
|
|
<item name="android:textColor">@color/nc_text_color</item>
|
2017-10-23 13:40:38 +03:00
|
|
|
</style>
|
2019-04-07 00:54:13 +03:00
|
|
|
|
|
|
|
<style name="ErrorAppearance" parent="@android:style/TextAppearance">
|
|
|
|
<item name="android:textColor">@color/nc_darkRed</item>
|
|
|
|
<item name="android:textSize">12sp</item>
|
|
|
|
</style>
|
|
|
|
|
2019-04-17 08:59:27 +03:00
|
|
|
<style name="ChipIncomingTextAppearance" parent="TextAppearance.MaterialComponents.Chip">
|
|
|
|
<item name="android:textColor">@color/nc_incoming_text_default</item>
|
2019-04-09 22:18:02 +03:00
|
|
|
</style>
|
|
|
|
|
2019-04-17 08:59:27 +03:00
|
|
|
<style name="ChipOutgoingTextAppearance" parent="TextAppearance.MaterialComponents.Chip">
|
|
|
|
<item name="android:textColor">@color/nc_outcoming_text_default</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="ChipMentionTextAppearance" parent="TextAppearance.MaterialComponents.Chip">
|
2019-04-09 22:18:02 +03:00
|
|
|
<item name="android:textColor">@color/colorAccent</item>
|
|
|
|
</style>
|
|
|
|
|
2017-10-23 13:40:38 +03:00
|
|
|
</resources>
|