feat: add suppression list (#192)

This commit is contained in:
KM Koushik
2025-07-27 23:51:59 +10:00
committed by GitHub
parent a28f132428
commit e6dd8673b4
20 changed files with 2026 additions and 58 deletions

View File

@@ -65,6 +65,24 @@ const config = {
DEFAULT: "hsl(var(--warning))",
foreground: "hsl(var(--warning-foreground))",
},
green: {
DEFAULT: "hsl(var(--green))",
},
red: {
DEFAULT: "hsl(var(--red))",
},
blue: {
DEFAULT: "hsl(var(--blue))",
},
purple: {
DEFAULT: "hsl(var(--purple))",
},
yellow: {
DEFAULT: "hsl(var(--yellow))",
},
gray: {
DEFAULT: "hsl(var(--gray))",
},
},
borderRadius: {
lg: "var(--radius)",

View File

@@ -55,6 +55,14 @@
--sidebar-accent-foreground: 240 5.9% 10%;
--sidebar-border: 240 11% 88%;
--sidebar-ring: 217.2 91.2% 59.8%;
/* Status Colors */
--green: 109 58% 40%;
--red: 347 87% 44%;
--blue: 197 97% 46%;
--purple: 266 85% 58%;
--yellow: 35 77% 49%;
--gray: 220 9% 46%;
}
.dark {
@@ -106,6 +114,14 @@
--sidebar-accent-foreground: 240 4.8% 95.9%;
--sidebar-border: 240 21% 15%;
--sidebar-ring: 217.2 91.2% 59.8%;
/* Status Colors - Dark Mode */
--green: 115 54% 76%;
--red: 343 81% 75%;
--blue: 212 96% 78%;
--purple: 267 84% 81%;
--yellow: 41 86% 83%;
--gray: 218 11% 65%;
}
}