CSS settings for linebreak appearance?

Ah, good catch Cawlin. I was thinking a marker for end-of-line carriage returns or blank lines. A horizontal rule (hr) makes sense here.

If it’s indeed that, for simply adjusting color and thickness, you could use this CSS:

body { 
    --hr-color: var(--background-modifier-border);
    --hr-thickness: 2px;
}

The above are the default values, so you’d, for example, change it to:

body {
    --hr-color: var(--color-red);
    --hr-thickness: 3px;
}

…or if you wanted to get really fancy:

1 Like