atom-gulp-control icon indicating copy to clipboard operation
atom-gulp-control copied to clipboard

Support light color schemes.

Open MicahZoltu opened this issue 9 years ago • 3 comments

Note: this may be a problem with gulp, not gulp-control.

I use a light theme and the white text doesn't get changed to black text when displayed on a white background. This leads to output that looks like: image

MicahZoltu avatar Jun 07 '15 01:06 MicahZoltu

Gulp doesn't look good with light themes either. I keep my terminal dark all the time but I like to use a light Atom theme during the day which makes this half-useless, a shame because I really like the plugin. It's the white that really needs to be replaced - perhaps text substitution just for that would be enough?

orlin avatar Nov 12 '15 15:11 orlin

A similar issue occurs on dark mode, but the issue is of course with the dark text print statements rather than the light.

hawkins avatar Jul 05 '16 12:07 hawkins

As a temporary solution you can hack the atom stylesheet code (Edit → Stylesheet...):

.theme-one-light-ui {
  .gulp-control {
    .output {
      background-color: #505050;
      color: white;
      pre {
        background-color: #505050;
        color: #FFA8A8 !important;
        font-weight: bold;
        span {
          color: #ECECEC !important;
        }
      }
    }
  }
}

Or something like this.

kovtunos avatar Jul 05 '16 12:07 kovtunos