<?xml version="1.0" encoding="utf-8"?
>
<alightproject version="1.0" width="2048" height="2048" frameRate="30" duration="6.0">
<!-- Canvas & global -->
<canvas backgroundColor="#f28b8b" /> <!-- light coral/pink background -->
<!-- Layer stack (top to bottom). Units are pixels for position/size. -->
<layers>
<!-- Spotify logo (bottom-left) -->
<layer id="logo" type="image" name="Spotify Logo" visible="true" blendMode="normal"
opacity="1">
<source type="file" fileName="spotify_logo.png" />
<transform x="120" y="1780" width="160" height="160" anchorX="0" anchorY="0"
rotation="0" />
</layer>
<!-- Big lyrics group (center-left) -->
<layer id="lyrics_group" type="group" name="Lyrics Group" visible="true">
<!-- Line 1 -->
<layer id="lyric1" type="text" name="Lyric Line 1" visible="true">
<text value="Ishq junoon jab had'se" fontFamily="Roboto-Bold" fontSize="210"
color="#000000" align="left" />
<transform x="140" y="820" width="1768" height="300" anchorX="0" anchorY="0" />
</layer>
<!-- Line 2 -->
<layer id="lyric2" type="text" name="Lyric Line 2" visible="true">
<text value="badh jaaye" fontFamily="Roboto-Bold" fontSize="210" color="#000000"
align="left" />
<transform x="140" y="1050" width="1768" height="300" anchorX="0" anchorY="0" />
</layer>
<!-- Line 3 -->
<layer id="lyric3" type="text" name="Lyric Line 3" visible="true">
<text value="Hanste hanste aashiq suli chadh jaaye" fontFamily="Roboto-Bold"
fontSize="180" color="#000000" align="left" />
<transform x="140" y="1280" width="1768" height="380" anchorX="0" anchorY="0" />
</layer>
</layer>
<!-- Title and artist text (top area) -->
<layer id="title_group" type="group" name="Title Group" visible="true">
<!-- Album thumbnail small -->
<layer id="thumb" type="image" name="Album Thumb" visible="true" blendMode="normal"
opacity="1">
<source type="file" fileName="album_thumb.png" />
<transform x="120" y="120" width="220" height="220" anchorX="0" anchorY="0"
rotation="0" />
</layer>
<!-- Song title -->
<layer id="title" type="text" name="Song Title" visible="true">
<text value="Teri Deewani" fontFamily="Roboto-Bold" fontSize="120" color="#000000"
align="left" />
<transform x="370" y="130" width="1400" height="150" anchorX="0" anchorY="0" />
</layer>
<!-- Artist -->
<layer id="artist" type="text" name="Artist" visible="true">
<text value="Kailash Kher" fontFamily="Roboto-Regular" fontSize="80" color="#111111"
align="left" />
<transform x="370" y="210" width="1400" height="120" anchorX="0" anchorY="0" />
</layer>
</layer>
<!-- Poster (inserted poster image) - small in top-left; user requested poster inside image but
smaller -->
<layer id="poster" type="image" name="Poster" visible="true" blendMode="normal"
opacity="1">
<source type="file" fileName="[Link]" />
<!-- Poster deliberately small: adjust width/height if you want even smaller -->
<transform x="40" y="40" width="140" height="140" anchorX="0" anchorY="0" rotation="0"
/>
<!-- optional: rounded corners effect could be applied in AM after import -->
</layer>
</layers>
<!-- Optional timeline (no animation by default) -->
<timeline>
<duration>6.0</duration>
<tracks>
<track layerId="lyrics_group" />
<track layerId="title_group" />
<track layerId="poster" />
<track layerId="thumb" />
<track layerId="logo" />
</tracks>
</timeline>
<!-- Notes for the user -->
<notes>
<![CDATA[
Tips:
- Replace [Link], album_thumb.png and spotify_logo.png with your actual images.
- If Roboto fonts are not available, replace fontFamily attributes to a font installed in your
device.
- Adjust fontSize and transform X/Y to better fit different aspect ratios (this XML was
authored for a square 2048x2048 canvas).
- To change background color, update canvas backgroundColor hex value.
- For smaller poster: reduce poster layer width/height or change its transform x/y.
]]>
</notes>
</alightproject>