I am using summaries to display the total amount to pay:
TextColumn::make('price')
->summarize(Sum::make())
I would like to colorize the default “Sum” label and its output because this is important information to highlight for the user.
How to achieve this?