Skip to content

Commit

Permalink
darken btn colors
Browse files Browse the repository at this point in the history
  • Loading branch information
gantoine committed May 16, 2024
1 parent e5940ea commit ab1a0af
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,19 @@ const menuItems: MenuItem[] = [
}
.p-button {
background-color: theme("colors.purple.500");
border-color: theme("colors.purple.500");
background-color: theme("colors.purple.600");
border-color: theme("colors.purple.600");
color: theme("colors.white");
&:hover {
background-color: theme("colors.purple.500");
border-color: theme("colors.purple.500");
}
&:focus {
background-color: theme("colors.purple.400");
border-color: theme("colors.purple.400");
}
}
</style>

Expand Down

0 comments on commit ab1a0af

Please sign in to comment.