@import "tailwindcss";
@tailwind base;
@tailwind components;
@tailwind utilities;

@theme {
  --color-bgcolor: oklch(14.1% 0.005 285.823);  
  --color-textcolor: #FFFFFF;
}

@layer base{
    button{
        @apply rounded-lg bg-purple-500
    }
}

@layer components{
    .myCustomComponent{
        @apply rounded-lg bg-amber-500
    }
}

@utility flex-center{
    @apply flex justify-center items-center
}