Where to find Filament color styles for default themes
I am integrating my own livewire components into a filment dashboard. I am struggling to find the color classes filaments uses for the default dark and bright themes. All I found in the docs is this:
https://filamentphp.com/docs/3.x/support/colors
Which doesn't link to any default colors (other than the examples)
I am interested in doing something like:
<tr class="{{ $index % 2 === 0 ? 'bg-filament-default' : 'bg-filament-default-highlight' }}">
I tried looking in the vendor folder but I just found gigantic .js files regarding to themes that are hard to make any sense off π I can eye ball the tailwindcss color and use those but would be nice if there is already a bg-class for that.1 Reply
I guess the theme system overrides the default tailwind classes. If that is the case I would like to know which classes are used for background and background highlights colors. And if there is a place where I can see a list of all the classes the theme system is overriding.