saadq / bliss-ui

Ultra minimalist theme optimized for usage with base16-ocean.
https://atom.io/themes/bliss-ui
MIT License
17 stars 3 forks source link

Add instruction to enable git color (fixes #1) #2

Closed wyudong closed 6 years ago

saadq commented 6 years ago

Ahh, sorry I meant that in the PR you can just actually remove those styles that blocked the Git syntax highlighting. So just delete the lines that I mentioned (and the ones you mentioned).

And then, in the Recommended Styles, you can say to add the following to your custom stylesheet:

// Remove Git highlighting from tree view
.status-modified,
.status-added,
.status-renamed,
.status-removed {
  color: inherit;
  background-color: inherit;

  &.directory > .list-item {
    color: inherit !important;
    background-color: inherit !important;
  }

  &.directory.selected > .list-item {
    color: inherit !important;
    background-color: inherit !important;
  }
}

.tree-view {
  .icon-file-text, .icon {
    color: #c0c0c0;
  }
}
wyudong commented 6 years ago

Haha, your way is much more better. I will make another PR in a short time.

saadq commented 6 years ago

Sounds good, and thanks for your time!

wyudong commented 6 years ago

PR done and README updated. The issue exists in apex-ui too: https://github.com/apex/apex-ui/issues/26

saadq commented 6 years ago

Awesome work! I like the approach of changing the color of .icon. Thanks very much for the help on this :)