TailwindCSS is not changing the text colour correctly
08:25 03 Apr 2021

I am using TailwindCSS with my Laravel and Vue project. The problem I am having is when I do

                

{{ movie.title }}

The actual result is a black text. When I do

                    

{{ status.title }}

The text is white and it works. So, the text can be changed to white but other than white color all appears as black. How can I fix this? To be honest, I have no idea where to look in the project to fix this issue. To use TailwindCSS, I am using Laravel Breeze.

tailwind-css