Skip to content
On this page

Readable style - save my eye

Change font-size, font-family, line-height

js
javascript: var style = document.createElement('style');
style.innerText =
  '*{line-height: 2em !important;font-size: 18px !important;font-family: Quicksand, Lato, Tahoma, Helvetica, Arial, sans-serif !important;}';
var head = document.getElementsByTagName('head')[0];
head.appendChild(style);
1
2
3
4
5

Light mode

js
javascript: var style = document.createElement('style');
style.innerText =
  '*{line-height: 2em !important;font-size: 18px !important;font-family: Quicksand, Lato, Tahoma, Helvetica, Arial, sans-serif !important;background-color: #f0efe6!important;color: #000000!important;position: relative!important;}';
var head = document.getElementsByTagName('head')[0];
head.appendChild(style);
1
2
3
4
5

Dark mode

js
javascript: var style = document.createElement('style');
style.innerText =
  '*{line-height: 2em !important;font-size: 18px !important;font-family: Quicksand, Lato, Tahoma, Helvetica, Arial, sans-serif !important;background-color: #2B2B2B!important;color: #C5C5C5!important;position: relative!important;}';
var head = document.getElementsByTagName('head')[0];
head.appendChild(style);
1
2
3
4
5

References

The code above was modified based on the code provided in the following page: