# Themes

Package provides 3 themes currently.

* default - classic theme&#x20;
* github - github style&#x20;
* modern - Elegant interfaces designed to align with modern aesthetics.

You can change the theme using `theme` key in the config file.

```php
// comments.php

return [
     /**
     * Available themes default,github,modern
     */
    'theme' => 'default',
]
```

### Changing Colors

Most of the time, all you need is to adjust the colors of your commenting system to match your site's design. You can easily do this by updating the relevant keys in the configuration files. For advanced configurations, please refer to the [customization section](https://lakm.gitbook.io/commenter/v2/advance/customization).

<figure><img src="https://875965555-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FbhkfzFUOOKRV3RS0SbDv%2Fuploads%2FBpX0skjs05xfTtnGzG9J%2FScreenshot%202024-12-20%20095512.jpg?alt=media&#x26;token=e568d193-63eb-4953-ba8a-4ca549098201" alt=""><figcaption></figcaption></figure>

```php
// comments.php

return [
    'primary_color' => 'green',

    'secondary_color' => '#000000',

    'bg_primary_color' => '#ededed',

    'bg_secondary_color' => 'white',

    'active_color' => 'rgb(209,213,219)',

    'hover_color' => 'rgb(229,231,235)',

    'button_color' => '#0000FF',

    'button_hover_color' => '#0707a5',

]
```

### Default

<figure><img src="https://875965555-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FbhkfzFUOOKRV3RS0SbDv%2Fuploads%2Fgit-blob-e83d71825fcfb186608fb78e2e4cb6c8a7a136c5%2Fdefault_style.png?alt=media" alt=""><figcaption></figcaption></figure>

### GitHub

<figure><img src="https://875965555-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FbhkfzFUOOKRV3RS0SbDv%2Fuploads%2Fgit-blob-05342c71b0ed90a6c612114bb339d3eb4c98124d%2Fgithub_style.png?alt=media" alt=""><figcaption></figcaption></figure>

### Modern

<figure><img src="https://875965555-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FbhkfzFUOOKRV3RS0SbDv%2Fuploads%2Fenm5zDVJT0O54tCUK8dp%2FScreenshot%202024-12-20%20155943.png?alt=media&#x26;token=132cae7a-18d4-4291-9d15-c9d60406e5d7" alt=""><figcaption></figcaption></figure>
