How to change default dark theme?

You would use a CSS snippet to change the look of the default theme. Give this headache-inducing version a try :stuck_out_tongue:

body:is(.theme-dark) {
  --bold-color: var(--color-orange);
  --text-highlight-bg: var(--color-blue);
  --text-selection: #4e7919;
}

The colors can be written in a bunch of different ways. Have a look here under “Color Conversion” if you’re not familiar:


How to use CSS snippets:

2 Likes