/* markdown-renderer is agnostic to style; you'll need to implement your own theme */
/* examples can be found here: https://github.com/jasonm23/markdown-css-themes */

/* for an opinionated feature use x-markdown */

markdown-renderer:empty::before {
  content: ":empty selector works.";
  color: var(--x-swatch-gray-500);
}

table {
  border-collapse: collapse;
}

table th,
table td {
  border: 2px solid var(--x-swatch-gray-800);
  padding: var(--x-margin-xxsmall) var(--x-margin-small);
}

code {
  color: var(--x-swatch-gray-200);
}

a {
  color: var(--x-swatch-gray-300);
}
