"How to achieve" CSS code snippets

@kadmos Try this:

/* for bold */
.cm-formatting.cm-formatting-strong.cm-strong {
  font-weight: 300;
}

/* for italics */
.cm-em.cm-formatting.cm-formatting-em {
  font-weight: 600;

}

Adjust the numbers as per your wishes.

1 Like