atom-ruby-test
atom-ruby-test copied to clipboard
Colors with Solarized scheme
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.
Below is example of Solarized theme's red:
Would it be possible to better match colours defined in Theme?
:+1:
:+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!
+1 It's only the red TBH
:+1: yes the red is not good.
:+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?
+1
You can customise it in style.less
:
.ruby-test .panel-body,
.ruby-test .panel-body pre {
background-color: #000;
}
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;
}
}
}
}