atom-ruby-test icon indicating copy to clipboard operation
atom-ruby-test copied to clipboard

Colors with Solarized scheme

Open madis opened this issue 9 years ago • 8 comments

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?

madis avatar Oct 26 '15 08:10 madis

:+1:

Shmuwol avatar Feb 02 '16 18:02 Shmuwol

:+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!

vanboom avatar Feb 11 '16 19:02 vanboom

+1 It's only the red TBH

whomwah avatar Feb 19 '16 08:02 whomwah

:+1: yes the red is not good.

metra avatar Feb 22 '16 21:02 metra

:+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?

swaincreates avatar Apr 07 '16 20:04 swaincreates

+1

namick avatar Jun 15 '16 18:06 namick

You can customise it in style.less:

.ruby-test .panel-body,
.ruby-test .panel-body pre {
  background-color: #000;
}

h13ronim avatar Aug 30 '16 09:08 h13ronim

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;
      }
    }
  }
}

andypike avatar Nov 18 '16 12:11 andypike