Skip to content

Commit

Permalink
fix: flat widget background too strong
Browse files Browse the repository at this point in the history
  • Loading branch information
sapkra committed May 5, 2024
1 parent 58221e1 commit f0698f3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/fragments/widget/Widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,32 +151,32 @@ const widget = tv({
{
variant: "flat",
color: "default",
class: colorVariants.flat.default,
class: colorVariants.flat.default.replace('/20', '/10'),
},
{
variant: "flat",
color: "primary",
class: colorVariants.flat.primary,
class: colorVariants.flat.primary.replace('/20', '/10'),
},
{
variant: "flat",
color: "secondary",
class: colorVariants.flat.secondary,
class: colorVariants.flat.secondary.replace('/20', '/10'),
},
{
variant: "flat",
color: "success",
class: colorVariants.flat.success,
class: colorVariants.flat.success.replace('/20', '/10'),
},
{
variant: "flat",
color: "warning",
class: colorVariants.flat.warning,
class: colorVariants.flat.warning.replace('/20', '/10'),
},
{
variant: "flat",
color: "danger",
class: colorVariants.flat.danger,
class: colorVariants.flat.danger.replace('/20', '/10'),
},
// faded / color
{
Expand Down

0 comments on commit f0698f3

Please sign in to comment.