wm3 icon indicating copy to clipboard operation
wm3 copied to clipboard

Can't change active line font color

Open SLDonk64 opened this issue 5 years ago • 1 comments

I'm trying inverse the "highlight current paragraph feature" so the text appears darker, so I can have a "fade inactive sentence mode" alongside "sentence break."

`

/* B. EDITOR STYLES */

$wm-editor { color: var(--main-text-color)!important; background: transparent; }

$wm-formatting { color: var(--mark-color) !important; text-decoration: none !important; font-weight: normal !important; font-style: normal !important; border: none !important; letter-spacing: 0em !important; }

$wm-selection { background-color: var(--mark-color); opacity: .5; border-radius: 1px; }

$wm-active-line { color: #310eaf!important; background: rgba(0, 0, 0, .07); opacity: 0.1; border-radius: 0px; border-right: 0px solid var(--mark-color); }

$wm-active-sentence { color: green; background-color: rgba(0, 0, 0, 0.03)!important;

}`

SLDonk64 avatar May 23 '20 01:05 SLDonk64

I see what you are trying to achieve, alas you can't set font color via $wm-active-line. Only background. i.

writemonkey avatar May 26 '20 06:05 writemonkey