josa42 / atom-blame

Show git blame as a gutter in Atom editor
https://atom.io/packages/blame
MIT License
22 stars 18 forks source link

Colorized annotations #16

Closed justinwoo closed 8 years ago

justinwoo commented 8 years ago

Any plans to allow for colorizing and customizing colorizing of the gutter? I might start working on this myself and make a PR. (e.g. author, date, commit in colors)

josa42 commented 8 years ago

I added classes to the gutter. So you can now customize the gutter colors by adding the following lines to your stylesheet (~/.atom/styles.less).

atom-text-editor::shadow .blame-gutter {
  .hash   { color: white; }
  .date   { color: white; }
  .author { color: white; }
}
justinwoo commented 8 years ago

:cool: thanks!