27 lines
1.0 KiB
Python
27 lines
1.0 KiB
Python
# Simple text-based icons for the Chrome extension
|
|
# These are placeholder files - replace with actual PNG icons for production
|
|
|
|
# Create simple SVG icons that can be converted to PNG
|
|
ICON_16_SVG = '''
|
|
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg">
|
|
<rect width="16" height="16" fill="#007bff"/>
|
|
<text x="8" y="12" font-family="Arial" font-size="10" fill="white" text-anchor="middle">🖨</text>
|
|
</svg>
|
|
'''
|
|
|
|
ICON_48_SVG = '''
|
|
<svg width="48" height="48" xmlns="http://www.w3.org/2000/svg">
|
|
<rect width="48" height="48" fill="#007bff" rx="8"/>
|
|
<text x="24" y="32" font-family="Arial" font-size="24" fill="white" text-anchor="middle">🖨️</text>
|
|
</svg>
|
|
'''
|
|
|
|
ICON_128_SVG = '''
|
|
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg">
|
|
<rect width="128" height="128" fill="#007bff" rx="16"/>
|
|
<text x="64" y="84" font-family="Arial" font-size="48" fill="white" text-anchor="middle">🖨️</text>
|
|
</svg>
|
|
'''
|
|
|
|
# For now, create simple text placeholders
|
|
# In production, convert these SVGs to PNG files |