Reverts custom styling for links, rendering them readable
Accessible Notion Link Colors by bkudria
Details
Authorbkudria
LicenseNo License
Categorynotion.so
Created
Updated
Size533 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name notion.so - 4/19/2023, 3:09:46 PM
@namespace github.com/openstyles/stylus
@version 1.0.1
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("notion.so") {
@media (prefers-color-scheme: light) {
a {
color: revert !important;
}
}
@media (prefers-color-scheme: dark) {
a {
color: #8cb4ff !important;
}
a:visited {
color: #ffadff !important;
}
}
}