geminilabs

Untitled

May 18th, 2026
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. add_filter('site-reviews/avatar/colors', function (array $colors): array
  2. {
  3.     // Option 1. add new colors:
  4.     $colors[] = [
  5.         'background' => '#e1f0ee',
  6.         'color' => '#125960',
  7.     ];
  8.     return $colors;
  9.  
  10.     // Option 2. replace with new colors:
  11.     return [
  12.         [
  13.             'background' => '#e1f0ee',
  14.             'color' => '#125960',
  15.         ],
  16.         // add more here
  17.     ];
  18. });
Advertisement
Add Comment
Please, Sign In to add comment