Title: change colour
Last modified: August 30, 2016

---

# change colour

 *  [ayanaliba](https://wordpress.org/support/users/ayanaliba/)
 * (@ayanaliba)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/change-colour-8/)
 * Hi, I use the theme Harmonic for my website ([http://bookingboavista.com](http://bookingboavista.com))
   but as it looks very dark, I would like to change the bar at the top where there
   is the menu to white with the fonts in black or dark gray. Someone can help me?
   thanks, Ayana

Viewing 1 replies (of 1 total)

 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/change-colour-8/#post-6521334)
 * Yes, Harmonic is a dark theme!
 * To change the colour scheme in the top header strip (called the masthead) means
   adding a few different pieces of CSS in your child theme, since there are various
   elements in the masthead including the site title, social icons, as well as the
   menu.
 * This piece will change the background colour of the strip itself to white
 *     ```
       #masthead {
         background-color: #ffffff;
       }
       ```
   
 * To get the site title showing up again, add this:
 *     ```
       #masthead h1 a {
         color: #666666;
       }
       ```
   
 * To bring back the social icons, add this:
 *     ```
       .social-links ul li a::before {
         color: #000000;
       }
       ```
   
 * The menu should already be visible in grey at this point, but you’ll want to 
   change the rollover colour from white to something else. I pulled a turquoise
   colour from your image:
 *     ```
       .main-navigation li a:hover {
         color: #37758f;
       }
       ```
   
 * This should get you started. Of course you can change the colour codes to whatever
   you like.

Viewing 1 replies (of 1 total)

The topic ‘change colour’ is closed to new replies.

## Tags

 * [change colours](https://wordpress.org/support/topic-tag/change-colours/)

 * 1 reply
 * 2 participants
 * Last reply from: [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * Last activity: [10 years, 8 months ago](https://wordpress.org/support/topic/change-colour-8/#post-6521334)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
