Skip to content

Commit 6bc08d6

Browse files
committed
fix(icons): fix copy scripts
1 parent 05083d2 commit 6bc08d6

File tree

1 file changed

+3
-3
lines changed
  • internals/automate/src/copy-svgs-raw

1 file changed

+3
-3
lines changed

internals/automate/src/copy-svgs-raw/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ function copyRaws() {
8282
`${rawPath}/${filename}`,
8383
(content) => {
8484
return content
85-
.replaceAll('#191919', 'var(--tiny-first-color, #191919)')
86-
.replaceAll('#AEAEAE', 'var(--tiny-second-color, #aeaeAE)')
87-
.replaceAll('#aeaeae', 'var(--tiny-second-color, #aeaeAE)')
85+
.replaceAll('#191919', 'var(--tiny-first-color)')
86+
.replaceAll('#AEAEAE', 'var(--tiny-second-color)')
87+
.replaceAll('#aeaeae', 'var(--tiny-second-color)')
8888
},
8989
`${svgsPath}/${name}`
9090
)

0 commit comments

Comments
 (0)