# Group Leave button

**URL:** https://meta.discourse.org/t/group-leave-button/354107
**Category:** Support
**Created:** [February 24, 2025, 11:26am UTC](https://meta.discourse.org/t/group-leave-button/354107 "2025-02-24T11:26:26Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Joe\_F](https://avatars.discourse-cdn.com/v4/letter/j/f4b2a3/32.png) [@Joe\_F](https://meta.discourse.org/u/Joe_F)
#### Post date: [February 24, 2025, 11:26am UTC](https://meta.discourse.org/t/group-leave-button/354107/1 "2025-02-24T11:26:26Z")

</div>

Hello,

Quick question, can the colour of the leave button in groups be changed, I had assumed this would be changed if i changed the “danger” colour but it did not.

Thanks

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [February 24, 2025, 11:36am UTC](https://meta.discourse.org/t/group-leave-button/354107/2 "2025-02-24T11:36:25Z")

</div>

You can try this CSS:

```scss
button.btn.btn-icon-text.btn-danger.group-index-leave {
    background-color: blue;
    color: white;
}
.btn.btn-icon-text.btn-danger.group-index-leave > svg {
    color: white;
}

```

This changes the background color of the button to blue, and the icon and text to white.  
 ![image](https://global.discourse-cdn.com/meta/original/4X/9/4/a/94a1cc1cc4ccd6b75ce8e158c1e55878decd9166.png)

---

<div class="post-metadata">

### Author: ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)
#### Post date: [September 17, 2025, 10:52pm UTC](https://meta.discourse.org/t/group-leave-button/354107/3 "2025-09-17T22:52:12Z")

</div>


