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

# aris config

> View or update widget configuration from the CLI.

# aris config

View or update widget configuration.

<Tabs>
  <Tab title="View current config">
    ```bash theme={null}
    npx @aris/cli config
    ```

    Outputs:

    ```
      Brokerage        Acme Realty
      Primary color    #1e3a8a
      Secondary color  #06b6d4
      Position         bottom-right
      Button style     rounded
      Button text      Chat with AI
      Title            Acme Realty Assistant
      Subtitle         here to find your next home
      Greeting         Hi! How can I help you find your perfect home today?
      Logo URL         none
      Avatar enabled   false
    ```
  </Tab>

  <Tab title="Update config">
    ```bash theme={null}
    npx @aris/cli config --color "#1a73e8" --position bottom-left
    ```

    ### Flags

    | Flag                      | Description                     |
    | ------------------------- | ------------------------------- |
    | `--color <hex>`           | Primary color                   |
    | `--secondary-color <hex>` | Secondary color                 |
    | `--position <pos>`        | `bottom-right` or `bottom-left` |
    | `--style <style>`         | `rounded`, `square`, or `pill`  |
    | `--greeting <text>`       | Greeting message                |
    | `--title <text>`          | Widget title                    |
    | `--subtitle <text>`       | Widget subtitle                 |
    | `--button-text <text>`    | Toggle button text              |
  </Tab>
</Tabs>

<Note>
  Config updates via CLI will be available once the settings update endpoint is added to the API router. For now, update settings in the [ARIS dashboard](https://aris247.com).
</Note>
