Skip to content

Commit 3730b60

Browse files
committed
fix(plugin): 修复二维码插件black属性导致其他ui框架颜色错误问题
1 parent a5d5066 commit 3730b60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/plugin/QrCodePlugin.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ class QrCodePlugin implements IPluginTempl {
6969
width: 300,
7070
margin: 10,
7171
errorCorrectionLevel: 'M',
72-
dotsColor: 'black',
72+
dotsColor: '#000000',
7373
dotsType: 'rounded',
74-
cornersSquareColor: 'black',
74+
cornersSquareColor: '#000000',
7575
cornersSquareType: 'square',
76-
cornersDotColor: 'black',
76+
cornersDotColor: '#000000',
7777
cornersDotType: 'square',
7878
background: '#ffffff',
7979
};

0 commit comments

Comments
 (0)