You find the CSS file for the "Firefox Reader View" under the path
cd /home/$USER/.mozilla/firefox/<PROFILE_FOLDER>/chrome/userContent.css
only if you already did set it up:
- Enter in your Firefox URL-search-bar:
about:support
.
- Open your Profile Folder by selecting
Show Folder
.
- Create a new folder inside your profile folder called
chrome
.
- Navigate into
chrome
and create a new plain-text file called userContent.css
- Edit
userContent.css
according to your CSS preferences.
- In new Firefox profiles, starting from Firefox 69, you additionally have to enable
toolkit.legacyUserProfileCustomizations.stylesheets
in about:config
, cf. Firefox 69: userChrome.css and userContent.css disabled by default.
In my case it looked like the following:
cd /home/$USER/.mozilla/firefox/<PROFILE_FOLDER>/
mkdir chrome
cd ./chrome
touch userContent.css
CSS-Example:
@-moz-document url-prefix("about:reader") {
body.dark {
color: salmon !important;
background-color: black !important;
}
body.light {
color: #222 !important;
background-color: #EEE !important;
}
body.sepia {
color: #5B4636 !important;
background-color: #F4ECD8 !important;
}
body.serif {
font-family: serif !important;
}
body.sans-serif {
font-family: sans-serif !important;
}
}
See this Reference for further explanations.
aboutReader.css
included. More suitable would be to ask a question on the project it self => github.com/mozilla/readability – Obsolescent