2019-04-24 09:32:19 +03:00
|
|
|
<!--
|
|
|
|
~ Nextcloud Talk application
|
|
|
|
~
|
|
|
|
~ @author Mario Danic
|
2021-03-26 00:33:29 +03:00
|
|
|
~ @author Andy Scherzinger
|
|
|
|
~ Copyright (C) 2021 Andy Scherzinger <info@andy-scherzinger.de>
|
2019-04-24 09:32:19 +03:00
|
|
|
~ 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. -->
|
2019-03-04 20:35:38 +03:00
|
|
|
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge">
|
2017-10-23 13:40:38 +03:00
|
|
|
<!-- Customize your theme here. -->
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
2020-10-12 17:14:52 +03:00
|
|
|
<item name="colorPrimaryDark">@color/colorPrimary</item>
|
2018-05-04 16:35:03 +03:00
|
|
|
<item name="colorAccent">@color/colorPrimary</item>
|
2021-03-26 00:33:29 +03:00
|
|
|
<item name="android:windowBackground">@color/bg_default</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-09-23 15:50:57 +03:00
|
|
|
<item name="android:textColor">@color/nc_incoming_text_default</item>
|
2019-03-04 20:35:38 +03:00
|
|
|
<item name="android:popupMenuStyle">@style/appActionBarPopupMenu</item>
|
|
|
|
<item name="actionOverflowMenuStyle">@style/appActionBarPopupMenu</item>
|
|
|
|
<item name="actionBarStyle">@style/appActionBarStyle</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-09-23 15:50:57 +03:00
|
|
|
<style name="ListItem" parent="BottomSheet.ListItem.TextAppearance">
|
|
|
|
<item name="android:textColor">@color/nc_incoming_text_default</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">
|
2020-10-12 17:14:52 +03:00
|
|
|
<item name="android:textColor">@color/textColorOnPrimaryBackground</item>
|
2019-04-17 08:59:27 +03:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="ChipMentionTextAppearance" parent="TextAppearance.MaterialComponents.Chip">
|
2020-10-12 17:14:52 +03:00
|
|
|
<item name="android:textColor">@color/colorPrimary</item>
|
2019-04-09 22:18:02 +03:00
|
|
|
</style>
|
|
|
|
|
2021-03-26 00:33:29 +03:00
|
|
|
<style name="ChipUnreadMessagesTextAppearance" parent="TextAppearance.MaterialComponents.Chip">
|
|
|
|
<item name="android:textSize">14sp</item>
|
|
|
|
<item name="android:textStyle">bold</item>
|
|
|
|
</style>
|
|
|
|
|
2019-03-04 20:35:38 +03:00
|
|
|
<style name="appActionBarStyle" parent="@style/Widget.MaterialComponents.ActionBar.Solid">
|
|
|
|
<item name="android:colorPrimary">@color/fg_inverse</item>
|
|
|
|
<item name="android:textColor">@color/fg_inverse</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="Toolbar_TextAppearance" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
|
|
|
|
<item name="android:colorPrimary">@color/fg_inverse</item>
|
|
|
|
<item name="android:textColor">@color/fg_inverse</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="appActionBarPopupMenu" parent="@style/Widget.AppCompat.PopupMenu.Overflow">
|
|
|
|
<item name="android:colorPrimary">@color/fg_inverse</item>
|
|
|
|
<item name="android:background">@color/bg_alt</item>
|
2019-09-24 12:31:43 +03:00
|
|
|
<item name="android:textColor">@color/nc_incoming_text_default</item>
|
2019-03-04 20:35:38 +03:00
|
|
|
</style>
|
|
|
|
|
2017-10-23 13:40:38 +03:00
|
|
|
</resources>
|