# fluent-support/trunk/app/Services/Blocks/BlockAttributes.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version trunk. 52 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/trunk/code/app/Services/Blocks/BlockAttributes.php
- Raw: https://pluginprobe.com/plugins/fluent-support/trunk/raw/app/Services/Blocks/BlockAttributes.php
- Modified: 2025-03-20T09:34:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-support/trunk/code/app/Services/Blocks/BlockAttributes.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Services\Blocks;

class BlockAttributes
{
    /**
     * @param array An array of attributes used for styling.
     */
    public static function CustomerPortalAttributes()
    {
        return [
            'containerBorderRadius' => [
                'type' => 'number',
                'default' => 16,
            ],
            'primaryButtonBgColor' => [
                'type' => 'string',
                'default' => 'rgba(14, 18, 27, 1)',
            ],
            'primaryButtonTextColor' => [
                'type' => 'string',
                'default' => 'rgba(255, 255, 255, 1)',
            ],
            'secondaryButtonBgColor' => [
                'type' => 'string',
                'default' => 'rgba(255, 255, 255, 1)',
            ],
            'secondaryButtonTextColor' => [
                'type' => 'string',
                'default' => '#18181B',
            ],
            'ticketInputBorderRadius' => [
                'type' => 'number',
                'default' => 10,
            ],
            'avatarBorderRadius' => [
                'type' => 'string',
                'default' => '50%',
            ],
            'showLogoutButton' => [
                'type' => 'boolean',
                'default' => false,
            ],
            'selectedMailbox' => [
                'type' => 'number',
                'default' => 0,
            ]
        ];
    }
}

```
