darkreader / darkreader

Dark Reader Chrome and Firefox extension
https://darkreader.org/
MIT License
19.62k stars 2.42k forks source link

[Feature Request] Add feature to invert colours of a local pdf #2562

Closed shruti170901 closed 4 years ago

shruti170901 commented 4 years ago

It would be really nice if the darkreader also inverts colours of pdf files local to the device similar to a feature of Adobe Reader

Gusted commented 4 years ago

Exposed as 1 big element we can't touch any specific elements.

luo-chuan commented 6 months ago

If you use Firefox, you can edit userContent.css like this:

@media (prefers-color-scheme: dark){
  .pdfViewer{filter: invert(1) hue-rotate(180deg);}
}

If you use Chrome or Edge, install the extention "PDF Reader", then edit the extention option like this:

html[data-theme*="dark"] .pdfViewer{
  filter: invert(1) hue-rotate(180deg);
}