Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('site-reviews/avatar/colors', function (array $colors): array
- {
- // Option 1. add new colors:
- $colors[] = [
- 'background' => '#e1f0ee',
- 'color' => '#125960',
- ];
- return $colors;
- // Option 2. replace with new colors:
- return [
- [
- 'background' => '#e1f0ee',
- 'color' => '#125960',
- ],
- // add more here
- ];
- });
Advertisement
Add Comment
Please, Sign In to add comment