Skip to content

Commit

Permalink
Add ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyAppeldoorn committed Aug 10, 2023
1 parent 44f69b6 commit b0c3769
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/support/color.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const chroma = require('chroma-js');
// eslint-disable-next-line @typescript-eslint/no-var-requires
const chroma = require("chroma-js");

export const colors = chroma.scale(['#767676', '#2185d0']).colors(100);
export const colors = chroma.scale(["#767676", "#2185d0"]).colors(100);

export const getStrokeColor = (percentage: number) => {
let strokeIndex = Math.round(percentage);
Expand Down

0 comments on commit b0c3769

Please sign in to comment.