Skip to content

Commit 5b425b9

Browse files
committed
fix: improve neon theme QR code detectability
- Change neon theme to use white modules on dark green background - Previous green-on-black had insufficient contrast for QR scanners - White (#ffffff) on dark green (#001a0d) provides maximum contrast - Ensures reliable detection by all QR code readers
1 parent b305528 commit 5b425b9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/types/advanced.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -334,19 +334,19 @@ export const PRESET_THEMES: Record<string, QRTheme> = {
334334
style: {
335335
eyes: {
336336
frameShape: 'circle',
337-
frameColor: '#00ff41',
337+
frameColor: '#ffffff',
338338
frameEffect: 'glow',
339339
pupilShape: 'circle',
340-
pupilColor: '#00ff41',
340+
pupilColor: '#ffffff',
341341
pupilEffect: 'neon',
342342
},
343343
body: {
344344
shape: 'circle',
345-
color: '#00ff41',
345+
color: '#ffffff',
346346
effect: 'neon',
347347
},
348348
background: {
349-
primaryColor: '#000000',
349+
primaryColor: '#001a0d',
350350
},
351351
effects: {
352352
glow: {

0 commit comments

Comments
 (0)