Browse Source

Use same dark background as web editor

tags/v1.0.0
Matt Baer 6 years ago
parent
commit
750004effa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/window.vala

+ 1
- 1
src/window.vala View File

@@ -157,7 +157,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow {
Gtk.rgb_to_hsv(text_color.red, text_color.green, text_color.blue,
out h, out s, out v);

if (v < 0.5) css += "* {background: black; color: white;}";
if (v < 0.5) css += "* {background: #222; color: white;}";
}
cur_styles = new Gtk.CssProvider();
cur_styles.load_from_data(css);


Loading…
Cancel
Save