- Added Tailwind CSS configuration with custom theme colors and animations. - Created global styles in index.css including custom scrollbar and button components. - Set up main entry point in main.tsx to render the App component. - Configured TypeScript with strict settings and path mapping. - Added support for high contrast mode and reduced motion in styles. - Included print styles for better printing experience.
13 lines
683 B
XML
13 lines
683 B
XML
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#ec4899;stop-opacity:1" />
|
|
<stop offset="50%" style="stop-color:#8b5cf6;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#3b82f6;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="32" height="32" rx="8" fill="url(#grad1)"/>
|
|
<path d="M16 8L20.5 14H11.5L16 8Z" fill="white" opacity="0.9"/>
|
|
<circle cx="16" cy="18" r="3" fill="white" opacity="0.9"/>
|
|
<path d="M10 22L16 20L22 22L20 26H12L10 22Z" fill="white" opacity="0.9"/>
|
|
</svg> |