mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
fix unreadable tags on dark theme
This commit is contained in:
parent
42c35ae119
commit
1e00293199
3 changed files with 4 additions and 13 deletions
|
@ -1,18 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<shape android:shape="rectangle">
|
<shape android:shape="rectangle">
|
||||||
<corners android:radius="3dp" />
|
<corners android:radius="3dp" />
|
||||||
<solid android:color="@color/tag_gray_text" />
|
<solid android:color="@color/tag_bg_dark" />
|
||||||
</shape>
|
</shape>
|
||||||
</item>
|
</item>
|
||||||
|
</layer-list>
|
||||||
<item android:bottom="2px">
|
|
||||||
<shape android:shape="rectangle">
|
|
||||||
<corners android:radius="3dp" />
|
|
||||||
<solid android:color="@color/tag_gray_text" />
|
|
||||||
</shape>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</layer-list>
|
|
||||||
|
|
|
@ -96,7 +96,7 @@
|
||||||
<color name="tag_green_text">#FFFFFF</color>
|
<color name="tag_green_text">#FFFFFF</color>
|
||||||
<color name="tag_gray">#E0E0DE</color>
|
<color name="tag_gray">#E0E0DE</color>
|
||||||
<color name="tag_gray_shadow">#C9C9C8</color>
|
<color name="tag_gray_shadow">#C9C9C8</color>
|
||||||
<color name="tag_gray_text">#949181</color>
|
<color name="tag_bg_dark">#757575</color>
|
||||||
|
|
||||||
<color name="newsblur_blue">#0b445a</color>
|
<color name="newsblur_blue">#0b445a</color>
|
||||||
|
|
||||||
|
|
|
@ -142,7 +142,7 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="tag">
|
<style name="tag">
|
||||||
<item name="android:textColor">@color/tag_gray_text</item>
|
<item name="android:textColor">@color/midgray</item>
|
||||||
<item name="android:background">@drawable/tag_background_neutral</item>
|
<item name="android:background">@drawable/tag_background_neutral</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue