Trying to do it purely with the stylesheet, without compton, this does everything I want EXCEPT change the foreground color in the main text area. Again, this is the entirety of the file:
/* The "*" affects EVERYTHING for which no explicit rule follows with the 1 exception noted below */
* {
background-color: #000000;
color: white; /* Won't affect fg of main text area. Why? */
font: 24px;
border: 1px solid #ffffff;
}
|