This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name ッツ UI Enhancements (4:3 ereader) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 21.4 | |
| // @description E-ink enhancements for ttu ebook-reader | |
| // @author KanjiEater, Glacey | |
| // @match https://reader.ttsu.app/* | |
| // @homepageURL https://gist.github.com/Glacey/8c8b3cbcd40a56a6460edb29dd6f9202 | |
| // @grant GM_addStyle | |
| // @run-at document-idle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Background color */ | |
| :root[data-theme="dark"] { | |
| --background-color: rgb(45, 45, 55); | |
| } | |
| /* General settings */ | |
| :root { | |
| --entry-vertical-padding: 0.5em; | |
| --entry-horizontal-padding: 0.5em; | |
| --line-height-no-units: 16; |