Snai3i-MarketPlace / frontend / src / App.css
App.css
Raw
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;

    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;

    --primary: 188 39% 61%;
    --primary-foreground: 210 40% 98%;

    --secondary: 210 40% 96.1%;
    --secondary-foreground: 188 39% 61%;

    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;

    --accent: 210 40% 96.1%;
    --accent-foreground: 188 39% 61%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;

    --radius: 0.5rem;

    --text-primary: 240 29% 17%;
    --text-secondary: 252 5% 53%;
    --text-category: 189 32% 32%;

    --kappel-500: 188 39% 61%;
    --kappel-400: 189 58% 71%;
    --kappel-300: 188 96% 82%;
    --kappel-200: 189 100% 88%;
    --kappel-100: 188 100% 93%;
    --kappel-50: 193 100% 98%;

    --mauve-900: 240 25% 27%;
    --mauve-600: 240 23% 58%;

    --primary-market: 188 39% 61%;
    --primary-foreground-market: 210 40% 98%;

    --mutedMarket: 210 40% 96.1%;
    --mutedMarket-foreground: 215.4 16.3% 46.9%;
  }

  .dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;

    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;

    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;

    --primary: 210 40% 98%;
    --primary-foreground: 188 39% 61%;

    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;

    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;

    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;

    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;

    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9%;
  }
}

@layer base {
  * {
    @apply border-border font-montserrat scroll-smooth;
  }
  body {
    @apply bg-background text-foreground;
  }
  h1 {
    @apply text-primary text-3xl sm:text-4xl xl:text-5xl font-extrabold;
  }
  h2 {
    @apply text-primary text-2xl sm:text-3xl xl:text-4xl font-bold;
  }
  h3 {
    @apply text-primary text-xl sm:text-2xl xl:text-3xl font-semibold;
  }
  h4 {
    @apply text-primary text-lg sm:text-xl xl:text-2xl font-medium;
  }
  h5 {
    @apply text-primary text-lg;
  }
  h6 {
    @apply text-primary text-base;
  }
  p {
    @apply text-primary;
  }
  button {
    @apply text-white;
  }
}