atom / one-dark-syntax

Atom One dark syntax theme
MIT License
448 stars 236 forks source link

Change background color #19

Closed andersennl closed 9 years ago

andersennl commented 9 years ago

Hi, what css do I need to write into my custom css atom file if I want to decrease the brightness of the grey editor background?

It think it is a really good looking theme but for me personally the background is too bright to look at it all day long. (In the risk of the grey color being part of a color composition together with the other colors. Maybe there is a bigger thought behind this?) Thanks.

simurai commented 9 years ago

The current background color is: hsl(222, 11%, 18%). To make it darker, you could change the last percentage (18%) to a lower number.. maybe something like this:

// in your `styles.less` file
.theme-one-dark-ui atom-text-editor {
  background-color: hsl(222, 11%, 12%);
}
andersennl commented 9 years ago

Thanks a lot!

Am 27.03.2015 um 13:18 schrieb simurai notifications@github.com:

The current background color is: hsl(222, 11%, 18%). To make it darker, you could change the last percentage (18%) to a lower number.. maybe something like this:

// in your styles.less file .theme-one-dark-ui atom-text-editor { background-color: hsl(222, 11%, 12%); } — Reply to this email directly or view it on GitHub.