Feature Request: Themed Launcher icon

Hi, I was wondering if you could possibly implement the Themed Launcher icon feature introduced in Android 13.
I would have tried implementing it myself, but it seems there's neither a VectorDrawable nor an SVG of the app's icon in this repo.
The easiest way to implement this feature would be to:

  1. Remove the blue background from the app/src/main/res/mipmap-*dpi/ic_launcher_foreground.webp mipmaps:

  2. Move the background to a color value #4169E1FF

  3. Add this line to app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
    & app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:

<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background"/>
    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
+   <monochrome android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Thanks and have a nice day! 😃

Edited by Headstand6504