By default link color is blue. How do I override it globally in Tailwindcss so that I don't have to set text-color-xxx on every link throughout the app?
By default link color is blue. How do I override it globally in Tailwindcss so that I don't have to set text-color-xxx on every link throughout the app?
You need to define base styles on global css file.
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
a {
@apply text-blue-900;
}
}