moxley / atom-ruby-test

Run Ruby tests, Rspec examples, and Cucumber features from Atom
MIT License
43 stars 36 forks source link

Colors with Solarized scheme #75

Open madis opened 8 years ago

madis commented 8 years ago

atom-ruby-test colours are very hard to look when using Solarized colour theme. I mean solarized has its red colour which looks nice. atom-ruby-test uses different red combinded w/ lighter background that makes output very hard to read. Example screenshot attached.

screen shot 2015-10-26 at 10 15 51

Below is example of Solarized theme's red:

screen shot 2015-10-26 at 10 14 43

Would it be possible to better match colours defined in Theme?

Shmuwol commented 8 years ago

:+1:

vanboom commented 8 years ago

:+1: I am using the Atom Dark (UI Theme) and One Dark (Syntax Theme), and having a similar issue. The colors in the rspec results window are very muted and dark, whereas other text windows have brighter colors.

Killer extension, love it! Thanks!

whomwah commented 8 years ago

+1 It's only the red TBH

metra commented 8 years ago

:+1: yes the red is not good.

swaincreates commented 8 years ago

:+1: Agreed, i'm using One Dark with Atom Material and colors aren't great.. Wish there was a way to change. Would really be nice if I could integrate with Terminal Plus where user has control over colors. Has anyone seen a way to integrate the two?

namick commented 8 years ago

+1

h13ronim commented 7 years ago

You can customise it in style.less:

.ruby-test .panel-body,
.ruby-test .panel-body pre {
  background-color: #000;
}
andypike commented 7 years ago

If you want to override specific colours, here's how I do it in my style.less file:

.ruby-test {
  .panel-body {
    pre {
      // Pending specs
      span[style="color:#A50"] {
        color: #EFD64D !important;
      }

      // Failing specs
      span[style="color:#A00"] {
        color: #E06C75 !important;
      }
    }
  }
}