Skip to content

Commit

Permalink
feat: Add default progress options
Browse files Browse the repository at this point in the history
This commit adds a new file `DefaultProgress.ts` which defines the default options for progress bars. The options include the color, failedColor, and thickness.
  • Loading branch information
realashleybailey committed Oct 4, 2023
1 parent 7487a88 commit 43cb314
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/src/assets/configs/DefaultProgress.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const defaultOptions = {
color: "rgb(254 65 85 / var(--tw-bg-opacity))",
failedColor: "#f44336",
thickness: "2px",
};

export default defaultOptions;

0 comments on commit 43cb314

Please sign in to comment.