Skip to content

Commit

Permalink
fix: maintain alpha value when using the command
Browse files Browse the repository at this point in the history
  • Loading branch information
jeronimoek committed Dec 8, 2023
1 parent 87192b5 commit 7df323d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export async function replaceAllColors(
r: matchedColor.red * 255,
g: matchedColor.green * 255,
b: matchedColor.blue * 255,
a: matchedColor.alpha,
alpha: matchedColor.alpha,
};

text = replaceTextInMatch(
Expand Down

0 comments on commit 7df323d

Please sign in to comment.