# Comment changer la couleur de l'icône d'en-tête ?

**URL:** https://meta.discourse.org/t/how-to-change-header-icon-color/106098
**Category:** Development
**Created:** [Janvier 9, 2019, 7:11 UTC](https://meta.discourse.org/t/how-to-change-header-icon-color/106098 "2019-01-09T19:11:15Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [Février 18, 2019, 4:46 UTC](https://meta.discourse.org/t/how-to-change-header-icon-color/106098/4 "2019-02-18T16:46:34Z")

</div>

Yes, these selectors are a little more specific now and we removed the opacity entirely in favor of using a solid color (there was a bug in Safari where SVG icons were clipped slightly because of the opacity).

You can remove anything you have related to opacity, and do this

```CSS
.d-header-icons .d-icon {
   color: #fff; 
}

.d-header-icons .d-icon:hover {
   background-color: #fff; 
   color: #001d4d;
}

```

---

_[View the full topic](https://meta.discourse.org/t/how-to-change-header-icon-color/106098)._
