.code-display-container {
  .code-display {
    background: #32485f;
    padding: 2rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  pre {
    color: $white;
    page-break-inside: avoid;
    font-size: 15px;
    margin-bottom: 0;
    max-width: 100%;
    overflow: auto;
    display: block;
    word-wrap: break-word;
  }
  code {
    color: $violet;
    text-align: left;
    font-family: Consolas, "Courier New", monospace !important;
  }
  .hljs-name,
  .hljs-tag {
    color: #ff4f00;
  }
  .hljs-attr,
  .hljs-keyword,
  .hljs-attribute,
  .hljs-built_in {
    color: $violet;
  }
  .hljs-string {
    color: $light-green-2;
  }

  .hljs-comment,
  .xquery,
  .xquery .hljs-keyword {
    color: grey;
  }
  .hljs-title,
  .hljs-function {
    color: $white;
  }
  .hljs {
    background: inherit;
  }
  .xml {
    .hljs-attr {
      color: $violet;
    }
  }
  .hsp {
    color: $white;
  }
  .javascript,
  .vim {
    .hljs-function,
    .hljs-keyword {
      color: $white;
    }
  }
  .reasonml {
    .hljs-module-access {
      color: $white;
    }
    .hljs-constructor {
      .hljs-params {
        color: $light-green-2;
      }
    }
  }
  .colorful {
    pre {
      color: $white;
      background: #162437 !important;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1) !important;
      border-radius: 10px !important;
      font-family: Interm !important;
      font-size: 16px !important;
      line-height: 26px !important;
      letter-spacing: -0.01px;
      border: none !important;
      .token {
        color: $white !important;
      }
    }
  }
}
