adambard/learnxinyminutes-site

Unreadable text on selection

Closed this issue · 0 comments

image

// Implements dark mode feature -- just add .dark to body!

Solution will be just to add one more rule to change color on selection

html.dark {
    ::selection {
        color: #000;
    }
}