/*

Delphi IDE-inspired theme for highlight.js
- Background: white
- Reserved words: navy bold (#000080)
- Comments: green italic (#008000)
- Strings: blue (#0000FF)
- Numbers / literals: navy (#000080)
- Compiler directives ($IFDEF etc.): green bold
- Default text: black

Class names are highlight.js's standard token classes — the same theme
therefore reads sensibly for non-Delphi languages too (C#, Python, C++).

*/

.hljs {
    display: block;
    overflow-x: auto;
    color: #000;
    background: #fff;
}

.hljs-comment,
.hljs-quote {
    color: #008000;
    font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-section,
.hljs-doctag {
    color: #000080;
    font-weight: bold;
}

.hljs-string,
.hljs-template-string,
.hljs-attribute,
.hljs-attr,
.hljs-symbol {
    color: #0000ff;
}

.hljs-number,
.hljs-meta,
.hljs-meta-string,
.hljs-meta-keyword {
    color: #008000;
    font-weight: bold;
}

.hljs-title,
.hljs-name,
.hljs-class .hljs-title,
.hljs-built_in,
.hljs-type {
    color: #000;
}

.hljs-variable,
.hljs-template-variable,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp {
    color: #000;
}

.hljs-link {
    color: #0000ff;
    text-decoration: underline;
}

.hljs-bullet,
.hljs-subst,
.hljs-formula {
    color: #000;
}

.hljs-addition {
    color: #008000;
    background-color: #eaffea;
}

.hljs-deletion {
    color: #b00020;
    background-color: #ffecec;
}

.hljs-emphasis {
    font-style: italic;
}

.hljs-strong {
    font-weight: bold;
}
