© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
2 replies
1benjam1

Modify/add colors when using Filament outside of panel

Hi guys ! I'm trying to change colors of Filament components and I was able do to it for the Panel but not for the blade component used outside such as
<x-filament::link/>
<x-filament::link/>
.

I tried this in my
tailwind.config.js
tailwind.config.js
but it doesn't work :

import preset from "./vendor/filament/support/tailwind.config.preset";

const colors = require("tailwindcss/colors");

export default {
    presets: [preset],
    content: [
        "./app/Filament/**/*.php",
        "./resources/views/**/*.blade.php",
        "./vendor/filament/**/*.blade.php",
    ],
    theme: {
        extend: {
            colors: {
                primary: colors.cyan,
            },
        },
    },
};
import preset from "./vendor/filament/support/tailwind.config.preset";

const colors = require("tailwindcss/colors");

export default {
    presets: [preset],
    content: [
        "./app/Filament/**/*.php",
        "./resources/views/**/*.blade.php",
        "./vendor/filament/**/*.blade.php",
    ],
    theme: {
        extend: {
            colors: {
                primary: colors.cyan,
            },
        },
    },
};


Anyone can help ?
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Filament Table Outside of Panel
FilamentFFilament / ❓┊help
6mo ago
Using filament tables outside the panel
FilamentFFilament / ❓┊help
3y ago
Filament Form Outside Admin Panel
FilamentFFilament / ❓┊help
2y ago
Using filament forms outside filament, how can i configure primary colors?
FilamentFFilament / ❓┊help
3y ago