In order to browse and use SuperCollider help system in inverted gray colours, there are two quick hacks:
- modify internal Help system
- style the help on doc.sccode.org using Stylish
To modify internal Help system find the file /usr/local/share/SuperCollider/HelpSource/scdoc.css
and add at the bottom/end of the file:
1 2 3 4 5 6 |
body { background: #333; color: #333; -webkit-filter: invert(100%); filter: invert(100%) ; } |
If you use doc.sccode.org and a Stylish add-on in (for example) Firefox to custom-style pages, you can add a new style which is similar to the above:
1 2 3 4 5 6 7 8 9 10 |
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("doc.sccode.org") { body { background: #333; color: #333; -webkit-filter: invert(100%) !important; filter: invert(100%) !important; } } |