Skip to content

Commit

Permalink
♻️ CW-1: Use consistent variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Jun 11, 2024
1 parent 4683bed commit 54323e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/colorwind/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export class Colorwind extends Plugin<ColorwindConfig> {
}

public addColors(): this {
for (const color of Object.entries(this.options.colors)) {
this.addColor(color[0], color[1]);
for (const [colorName, colorOption] of Object.entries(this.options.colors)) {
this.addColor(colorName, colorOption);
}
return this;
}
Expand Down

0 comments on commit 54323e0

Please sign in to comment.