Change Default Link Color with Vite How can I change the default link color in Tailwind using the Laravel Breeze Vite setup?
Not matter, that which framework you are using, you can set them by inspecting them. Find the class or Tagname and write the style for it in the footer, header, or main CSS file.
You can extend/overwrite the colors in tailwind.config.js. Add this
theme: {
extend: {
colors: {
blue: {
DEFAULT: '#1165C5',
500: '#ABCFF8',
}
}
}
Can you show an example of how the classes on the a looks ? I cannot find any links except in the nav in breeze
@zaxwebs if guess you want something like this
resources\css\app.css ADD
a {
@apply text-red-600;
}
a:active,
a:hover,
a:focus {
@apply underline;
}
and then
npm run build
Please sign in or create an account to participate in this conversation.