We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c28275 commit 1fb841aCopy full SHA for 1fb841a
src/components/BugBountyCards.tsx
@@ -47,10 +47,10 @@ type LabelProps = FlexProps & {
47
}
48
49
const classNameByVariant = {
50
- low: "bg-[#ffe3d3] text-[#333]",
51
- medium: "bg-[#ffab7b] text-[#333]",
52
- high: "bg-[#c63333] text-white",
53
- critical: "bg-[#930000] text-white",
+ low: "bg-red-100 text-black",
+ medium: "bg-red-300 text-black",
+ high: "bg-red-700 text-white",
+ critical: "bg-red-900 text-white",
54
55
56
const Label = ({ children, variant = "medium", ...props }: LabelProps) => {
0 commit comments