wallabag / wallabag/android-app
Annotation highlight too faint on e-ink
Open
Easy
Improvement
UI
- Dominant language
- Java
- Stars
- 587
- Forks
- 276
- PR merge metrics
- No merged PRs in 30d
Description
The default highlight style in `annotator.min.js` is `rgba(255,255,10,0.3)`, whick looks fine on LCD screen but is invisible on e-ink due to low contrast. The fix should be as simple as adding the following css to override it, something like `rgba(0,255,0,0.4)` helps. It would be great to have this option in the settings.
```
.annotator-hl {
background: rgba(0,255,0,0.4) !important;
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.