Skip to content

Commit

Permalink
Make gradient more noticeable
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoAndai committed Mar 13, 2024
1 parent bde968b commit a0aab75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ function GradientCircularProgress() {
<svg width={0} height={0}>
<defs>
<linearGradient id="my_gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stopColor="rgba(184, 74, 202, 1)" />
<stop offset="100%" stopColor="rgba(142, 66, 235, 1)" />
<stop offset="0%" stopColor="#e01cd5" />
<stop offset="100%" stopColor="#1CB5E0" />
</linearGradient>
</defs>
</svg>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ function GradientCircularProgress() {
<svg width={0} height={0}>
<defs>
<linearGradient id="my_gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stopColor="rgba(184, 74, 202, 1)" />
<stop offset="100%" stopColor="rgba(142, 66, 235, 1)" />
<stop offset="0%" stopColor="#e01cd5" />
<stop offset="100%" stopColor="#1CB5E0" />
</linearGradient>
</defs>
</svg>
Expand Down

0 comments on commit a0aab75

Please sign in to comment.