dilums/object-detection
0
1@tailwind base;2@tailwind components;3@tailwind utilities;4 5@layer base {6 :root {7 --background: 0 0% 100%;8 --foreground: 240 10% 3.9%;9 10 --card: 0 0% 100%;11 --card-foreground: 240 10% 3.9%;12 13 --popover: 0 0% 100%;14 --popover-foreground: 240 10% 3.9%;15 16 --primary: 240 5.9% 10%;17 --primary-foreground: 0 0% 98%;18 19 --secondary: 240 4.8% 95.9%;20 --secondary-foreground: 240 5.9% 10%;21 22 --muted: 240 4.8% 95.9%;23 --muted-foreground: 240 3.8% 46.1%;24 25 --accent: 240 4.8% 95.9%;26 --accent-foreground: 240 5.9% 10%;27 28 --destructive: 0 84.2% 60.2%;29 --destructive-foreground: 0 0% 98%;30 31 --border: 240 5.9% 90%;32 --input: 240 5.9% 90%;33 --ring: 240 10% 3.9%;34 35 --radius: 0.5rem;36 }37 38 .dark {39 --background: 240 10% 3.9%;40 --foreground: 0 0% 98%;41 42 --card: 240 10% 3.9%;43 --card-foreground: 0 0% 98%;44 45 --popover: 240 10% 3.9%;46 --popover-foreground: 0 0% 98%;47 48 --primary: 0 0% 98%;49 --primary-foreground: 240 5.9% 10%;50 51 --secondary: 240 3.7% 15.9%;52 --secondary-foreground: 0 0% 98%;53 54 --muted: 240 3.7% 15.9%;55 --muted-foreground: 240 5% 64.9%;56 57 --accent: 240 3.7% 15.9%;58 --accent-foreground: 0 0% 98%;59 60 --destructive: 0 62.8% 30.6%;61 --destructive-foreground: 0 0% 98%;62 63 --border: 240 3.7% 15.9%;64 --input: 240 3.7% 15.9%;65 --ring: 240 4.9% 83.9%;66 }67}68 69@layer base {70 * {71 @apply border-border;72 }73 body {74 @apply bg-background text-foreground;75 }76}77 78.dark .score-fg{79 background-color: #3d8a21 ;80}81.light .score-fg{82 background-color: #8ddf9a;83}