Light / Dark mode blue
Using filament 3 on a custom page the light mode looks blue when the OS (iPhone/Android) screen is in dark mode
If I change to dark mode in filament it looks ok
The problem is when I set filament on light mode


10 Replies
Only that custom page?
Any custom Page I create get this error. Even on other projects too
What does the page view look like?
thanks for you helping me out, really appreciate it
I meant the view file.
this is the style css of the blade
on another project i have a simpler view

and the livewire:public.abrej.edit is
just realized it was bcs i was using the script of <script src="https://cdn.tailwindcss.com"></script>
solved it using <script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
}
}
}
</script>
It’s better to use a compiled version instead of the CDN