> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hamptonn.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Bot Settings

> Customize the bot's appearance for your server.

<Note>
  Bot Settings commands require a **doll premium** subscription to use. These commands allow you to customize the bot's appearance and settings for your server.
</Note>

## Appearance Customization

<AccordionGroup>
  <Accordion title="Set embed color" icon="palette">
    <CodeGroup>
      ```javascript syntax theme={null}
      /botsettings color [color]
      ```

      ```javascript example theme={null}
      /botsettings color #ff0000
      /botsettings color #e0b1c2
      /botsettings color #00ff00
      ```
    </CodeGroup>
  </Accordion>

  <Accordion title="Set bot emojis" icon="icons">
    <CodeGroup>
      ```javascript syntax theme={null}
      /botsettings emoji [type] [emoji]
      ```

      ```javascript example theme={null}
      /botsettings emoji success ✅
      /botsettings emoji warning ⚠️
      /botsettings emoji error ❌
      /botsettings emoji loading 🔄
      /botsettings emoji clock ⏰
      ```
    </CodeGroup>
  </Accordion>
</AccordionGroup>

## Settings Management

<AccordionGroup>
  <Accordion title="View current settings" icon="eye">
    <CodeGroup>
      ```javascript syntax theme={null}
      /botsettings view
      ```

      ```javascript example theme={null}
      /botsettings view
      ```
    </CodeGroup>
  </Accordion>

  <Accordion title="Reset all settings" icon="eye-slash">
    <CodeGroup>
      ```javascript syntax theme={null}
      /botsettings reset
      ```

      ```javascript example theme={null}
      /botsettings reset
      ```
    </CodeGroup>
  </Accordion>
</AccordionGroup>

## Available Emoji Types

| Type            | Description                          |
| --------------- | ------------------------------------ |
| **success**     | Used for successful messages         |
| **warning**     | Used for warnings/error messages     |
| **error**       | Used for error messages              |
| **loading**     | Used for loading messages            |
| **clock**       | Used for timezone command            |
| **tada**        | Used for giveaways (default)         |
| **heart**       | Used for some messages               |
| **right arrow** | Used for pagination/next actions     |
| **left arrow**  | Used for pagination/previous actions |
| **chat bubble** | Used for AI messages                 |

## Color Format

You can only use **hex color codes** when setting the embed color:

* **Format**: `#hex`
* **Examples**: `#ff0000` (red), `#00ff00` (green), `#0000ff` (blue), `#e0b1c2` (pink)
