mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-15 02:36:12 -04:00
Remove Theme.Material3.DynamicColors.DayNight from the notification container style; it does not resolve correctly in the notification host process, causing light-mode colors to appear in dark mode. Replace all ?attr/colorAccent and ?android:attr/textColorPrimary refs in RemoteViews layouts with explicit day/night color resources (notification_icon_tint) and TextAppearance.Compat.Notification.Title defaults. Change tintMode from multiply to src_in for status glyphs; remove tint from product PNG icons to prevent silhouette rendering. Fixes #613
21 lines
606 B
XML
21 lines
606 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item android:id="@android:id/background">
|
|
<shape android:shape="rectangle">
|
|
<corners android:radius="4dp" />
|
|
<solid android:color="#26808080" />
|
|
</shape>
|
|
</item>
|
|
|
|
<item android:id="@android:id/progress">
|
|
<clip>
|
|
<shape android:shape="rectangle">
|
|
<corners android:radius="4dp" />
|
|
<solid android:color="@color/brand_primary" />
|
|
</shape>
|
|
</clip>
|
|
</item>
|
|
|
|
</layer-list>
|