/* Fruit Plug brand overrides for MkDocs Material */

:root > * {
  --md-primary-fg-color: #000000;
  --md-primary-fg-color--light: #262626;
  --md-primary-fg-color--dark: #000000;
  --md-accent-fg-color: #be006a;
  --md-accent-fg-color--transparent: rgba(190, 0, 106, 0.1);
}

[data-md-color-scheme="slate"] {
  --md-default-bg-color: #000000;
  --md-default-bg-color--light: #0a0a0a;
  --md-code-bg-color: #0a0a0a;
}

.md-header {
  background-color: #000000;
}
.md-tabs {
  background-color: #000000;
  border-bottom: 1px solid rgba(190, 0, 106, 0.3);
}

/* Brand accent rule under main heading */
.md-content h1 {
  position: relative;
  padding-bottom: 0.3em;
}
.md-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, transparent 0, #be006a 100%);
}
