app/src/main/res/values-night-v27/styles.xml
author Da Risk <da_risk@geekorum.com>
Mon, 15 Sep 2025 14:00:07 -0400
changeset 1370 13e39ef920a8
parent 1285 ab373fa827c8
permissions -rw-r--r--
update license headers
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     2
<!--
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     3
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     4
    Geekttrss is a RSS feed reader application on the Android Platform.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     5
1370
13e39ef920a8 update license headers
Da Risk <da_risk@geekorum.com>
parents: 1285
diff changeset
     6
    Copyright (C) 2017-2025 by Frederic-Charles Barthelery.
0
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     7
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     8
    This file is part of Geekttrss.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
     9
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    10
    Geekttrss is free software: you can redistribute it and/or modify
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    11
    it under the terms of the GNU General Public License as published by
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    12
    the Free Software Foundation, either version 3 of the License, or
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    13
    (at your option) any later version.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    14
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    15
    Geekttrss is distributed in the hope that it will be useful,
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    16
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    17
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    18
    GNU General Public License for more details.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    19
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    20
    You should have received a copy of the GNU General Public License
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    21
    along with Geekttrss.  If not, see <http://www.gnu.org/licenses/>.
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    22
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    23
-->
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    24
<resources>
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    25
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    26
    <style name="AppTheme.ArticleListActivity" parent="AppTheme.NoActionBar">
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    27
        <item name="android:statusBarColor">@android:color/transparent</item>
115
c5d233e1c100 ArticleDetailsActivity: make the statusbar same color as background content
Da Risk <da_risk@geekorum.com>
parents: 0
diff changeset
    28
        <item name="android:windowLightStatusBar">false</item>
1285
ab373fa827c8 app: start to cleanup styles.xml
Da Risk <da_risk@geekorum.com>
parents: 1174
diff changeset
    29
        <item name="android:navigationBarColor">@android:color/transparent</item>
0
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    30
        <item name="android:windowLightNavigationBar">false</item>
619
1ae52ef770ac theme: factorize theme and colors
Da Risk <da_risk@geekorum.com>
parents: 611
diff changeset
    31
        <item name="articleListHeader">@color/dark_color_primary_surface</item>
0
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    32
    </style>
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    33
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    34
    <style name="AppTheme.ArticleDetailActivity" parent="AppTheme.NoActionBar">
115
c5d233e1c100 ArticleDetailsActivity: make the statusbar same color as background content
Da Risk <da_risk@geekorum.com>
parents: 0
diff changeset
    35
        <item name="android:statusBarColor">?android:windowBackground</item>
c5d233e1c100 ArticleDetailsActivity: make the statusbar same color as background content
Da Risk <da_risk@geekorum.com>
parents: 0
diff changeset
    36
        <item name="android:windowLightStatusBar">false</item>
1285
ab373fa827c8 app: start to cleanup styles.xml
Da Risk <da_risk@geekorum.com>
parents: 1174
diff changeset
    37
        <item name="android:navigationBarColor">@android:color/transparent</item>
115
c5d233e1c100 ArticleDetailsActivity: make the statusbar same color as background content
Da Risk <da_risk@geekorum.com>
parents: 0
diff changeset
    38
        <item name="android:windowLightNavigationBar">false</item>
0
14443efede32 Initial commit
Da Risk <da_risk@geekorum.com>
parents:
diff changeset
    39
    </style>
115
c5d233e1c100 ArticleDetailsActivity: make the statusbar same color as background content
Da Risk <da_risk@geekorum.com>
parents: 0
diff changeset
    40
</resources>