F
Filament12mo ago
BBB

Form Builder Only ORANGE Color since V3

import preset from './vendor/filament/support/tailwind.config.preset'
import colors from 'tailwindcss/colors'

export default {
presets: [preset],
content: [
'./resources/**/*.blade.php',
'./app/Filament/**/*.php',
'./resources/views/filament/**/*.blade.php',
'./vendor/filament/**/*.blade.php'
],
theme: {
extend: {
colors: {
danger: colors.rose,
primary: colors.blue,
success: colors.green,
warning: colors.yellow,
},
},
}
}
import preset from './vendor/filament/support/tailwind.config.preset'
import colors from 'tailwindcss/colors'

export default {
presets: [preset],
content: [
'./resources/**/*.blade.php',
'./app/Filament/**/*.php',
'./resources/views/filament/**/*.blade.php',
'./vendor/filament/**/*.blade.php'
],
theme: {
extend: {
colors: {
danger: colors.rose,
primary: colors.blue,
success: colors.green,
warning: colors.yellow,
},
},
}
}
Unfortunately, nothing inside the documentation about this inside form builder only :(. With v2, it was blue. Thank you in advance for your help !
2 Replies
BBB
BBB12mo ago
Perfect, thank you... I'm sorry for this stupid question.