rNeomy / reader-view

Access Firefox's built in reader view from right click context menu
https://webextension.org/listing/chrome-reader-view.html
Mozilla Public License 2.0
482 stars 75 forks source link

Style for print #78

Closed ghost closed 4 years ago

ghost commented 4 years ago

Hi I use RV in the next case. I read from the pc screen with dark solarized style and sometimes print to pdf to read on eink book reader or even print out on paper. I once noticed that the contrast of text in the pdf is reduced. It turned out that when creating a pdf, the browser leaves the color of the text as it is configured in the RV and there it is not pure black even in the lightest style. For myself, I solved the problem with custom style:

@media print {
  body {
    color: black!important;
    background-color: white!important;
  }
}

It would be nice if some solution to this problem would be available to all.