mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-22 01:51:47 +00:00
We had a mix of specific colors and theme-based Material You colors. This aims to remove any hardcoded color so the app only uses the colors from the current theme.
10 lines
351 B
XML
10 lines
351 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<solid android:color="?colorAccent" />
|
|
<corners android:bottomRightRadius="2dip"
|
|
android:bottomLeftRadius="2dip"
|
|
android:topRightRadius="2dip"
|
|
android:topLeftRadius="2dip"/>
|
|
</shape>
|