feat: add LexAI icon (16/32/48/128px) - purple + lightning bolt
Some checks failed
CI — Test & Build / Test & Build (push) Failing after 23s

This commit is contained in:
Forge
2026-03-06 13:33:48 +08:00
parent 7f16bd886f
commit 3b1386bb4f
6 changed files with 33 additions and 0 deletions

BIN
public/icon-128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

BIN
public/icon-16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

BIN
public/icon-32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
public/icon-48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

27
public/icon.svg Normal file
View File

@@ -0,0 +1,27 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128" height="128">
<!-- Background circle with gradient -->
<defs>
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#6366f1;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:1" />
</linearGradient>
<linearGradient id="boltGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#fde68a;stop-opacity:1" />
<stop offset="100%" style="stop-color:#fbbf24;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Background rounded square -->
<rect x="4" y="4" width="120" height="120" rx="26" ry="26" fill="url(#bgGrad)" />
<!-- Subtle inner glow -->
<rect x="4" y="4" width="120" height="120" rx="26" ry="26"
fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="2"/>
<!-- Lightning bolt shape -->
<polygon points="72,14 38,68 62,68 56,114 90,60 66,60"
fill="url(#boltGrad)"
stroke="rgba(255,255,255,0.3)"
stroke-width="1.5"
stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -7,6 +7,12 @@ export default defineConfig({
name: 'LexAI - AI Writing Assistant',
description: 'Grammar checking and writing assistance powered by your own LLM API key',
version: '0.1.0',
icons: {
'16': 'icon-16.png',
'32': 'icon-32.png',
'48': 'icon-48.png',
'128': 'icon-128.png',
},
permissions: [
'storage',
'activeTab',