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

# Comment Tool

> The button to add new comments.

<Note>
  We recommend that you familiarize yourselves with [UI Customization Concepts](/ui-customization/overview) before attempting to modify any components.
</Note>

## VeltCommentToolWireframe

<img src="https://mintcdn.com/velt/2O8vk8YlVD4Kq-ni/images/customization/comments/comment-tool/comment-tool.png?fit=max&auto=format&n=2O8vk8YlVD4Kq-ni&q=85&s=8b67192d0a9d425abb02b1fd76239070" alt="" width="1024" height="576" data-path="images/customization/comments/comment-tool/comment-tool.png" />

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltWireframe>
        <VeltCommentToolWireframe>
            {/* Your custom element */}
        </VeltCommentToolWireframe>
    </VeltWireframe>
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```html theme={null}
    <velt-wireframe style="display:none;">
        <velt-comment-tool-wireframe>
            <!-- Your custom element -->
        </velt-comment-tool-wireframe>
    </velt-wireframe>
    ```
  </Tab>
</Tabs>

## Styling

### Disable ShadowDOM

* By default, ShadowDOM is used to ensure that your app's CSS does not interfere with the styling of the SDK components.
* Disable the shadow dom to apply your custom CSS to the component.

Default: `true`

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltCommentTool shadowDom={false} />
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    <velt-comment-tool shadow-dom="false"></velt-comment-tool>
    ```
  </Tab>
</Tabs>

### Dark Mode

<img src="https://mintcdn.com/velt/kAkMSIYF4ZlrlwLm/images/customization/velt-comment-tool-1.png?fit=max&auto=format&n=kAkMSIYF4ZlrlwLm&q=85&s=65ae5eea4040d5ed64947488f24c75c7" alt="" width="1024" height="576" data-path="images/customization/velt-comment-tool-1.png" />

Default: `false`

<Tabs>
  <Tab title="React / Next.js">
    ```js theme={null}
    <VeltCommentTool darkMode={true} />
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```js theme={null}
    <velt-comment-tool dark-mode="true"></velt-comment-tool>
    ```
  </Tab>
</Tabs>
