Issue with primary color theme.

I have installed the tailwinds package, yet, I cant make my icons show blue (primary). When selecting Pending, the icon should show blue, right? All the other colors work fine...

public static function table(Table $table): Table
    {
        return $table
            ->columns([
                Tables\Columns\TextColumn::make('name'),
                //Tables\Columns\TextColumn::make('is_completed'),
                IconColumn::make('taskstatusName.name')
                    ->label("Status")
                    ->colors([
                        'success' => 'Done',
                        'warning' => 'On Hold',
                        'danger' => 'Cancelled',
                        'primary' => 'Pending'
                    ])
                    ->options([
                        'heroicon-o-x-circle',
                        'heroicon-o-dots-circle-horizontal' => 'On Hold',
                        'heroicon-o-arrow-circle-down' => 'Pending',
                        'heroicon-o-check-circle' => 'Done',
                        'heroicon-o-x-circle' => 'Cancelled',
                    ]),
            ])
            ->filters([
                //
            ])
            ->headerActions([
                Tables\Actions\CreateAction::make(),
            ])
            ->actions([
                Tables\Actions\EditAction::make(),
                Tables\Actions\DeleteAction::make(),
            ])
            ->bulkActions([
                Tables\Actions\DeleteBulkAction::make(),
            ]);
    }          
image.png
Was this page helpful?