CSS Style for Bold or Italic

Maybe this could help:

.dark-theme mark {
  background: color1;
  color: color2;
  padding: 0 4px;
  border-radius: 3px;
  font-weight: 700;
}

.white-theme mark {
  background: color3;
  font-weight: 700;
}
1 Like