@xpack/docusaurus-plugin-doxygen
Version:
A Docusaurus plugin to integrate Doxygen into a Docusaurus project.
64 lines (51 loc) • 1.4 kB
CSS
/* --- Begin Highlight/styles.module.css --- */
/* --- Part of docusaurus-plugin-doxygen --- */
:global(:root) {
--doxy-highlight-keyword: #bb6bb2;
--doxy-highlight-keywordtype: #8258b3;
--doxy-highlight-keywordflow: #d67c3b;
--doxy-highlight-token: #438a59;
--doxy-highlight-comment: #969696;
--doxy-highlight-link: #5383d6;
--doxy-highlight-preprocessor: #46aaa5;
--doxy-highlight-link: #5383D6;
}
:global(span.doxyHighlight) {
white-space: pre;
}
:global(span.doxyHighlightComment) {
color: var(--doxy-highlight-comment);
white-space: pre;
}
:global(span.doxyHighlightPreprocessor) {
color: var(--doxy-highlight-preprocessor);
white-space: pre;
}
:global(span.doxyHighlightKeyword) {
color: var(--doxy-highlight-keyword);
white-space: pre;
}
:global(span.doxyHighlightKeywordType) {
color: var(--doxy-highlight-keywordtype);
white-space: pre;
}
:global(span.doxyHighlightKeywordFlow) {
color: var(--doxy-highlight-keywordflow);
white-space: pre;
}
:global(span.doxyHighlightToken) {
color: var(--doxy-highlight-token);
white-space: pre;
}
:global(span.doxyHighlightStringLiteral) {
color: var(--doxy-highlight-token); /* #002080 */
white-space: pre;
}
:global(span.doxyHighlightCharLiteral) {
color: #002080;
white-space: pre;
}
:global(span.doxyHighlight) a {
color: var(--doxy-highlight-link);
}
/* --- End Highlight/styles.module.css --- */