doxygen prettier

pull/9050/head
Mitchell Hashimoto 2025-10-05 20:28:33 -07:00
parent 6ef0be7580
commit 21d545c3b4
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 51 additions and 32 deletions

View File

@ -4,96 +4,115 @@
*/
/* Ghostty brand color for links and accents - high contrast for dark bg */
a, a:link {
color: #99B3FF;
a,
a:link {
color: #99b3ff;
}
a:visited {
color: #99B3FF;
color: #99b3ff;
}
a:hover {
color: #C2D4FF;
color: #c2d4ff;
}
/* High contrast text colors */
body, div.contents, div.header, .title, .summary, td, th, p, li {
color: #E8E8E8 !important;
body,
div.contents,
div.header,
.title,
.summary,
td,
th,
p,
li {
color: #e8e8e8 !important;
}
h1, h2, h3, h4, h5, h6, .groupheader {
color: #FFFFFF !important;
h1,
h2,
h3,
h4,
h5,
h6,
.groupheader {
color: #ffffff !important;
}
.memtitle, .memname {
color: #FFFFFF !important;
.memtitle,
.memname {
color: #ffffff !important;
}
.memdoc {
color: #E8E8E8 !important;
color: #e8e8e8 !important;
}
/* Selection color */
::selection {
background: rgba(53, 81, 243, 0.6);
background: rgba(53, 81, 243, 0.6);
}
/* Tree view selected item */
#nav-tree .selected {
background-color: #3551F3 !important;
background-color: #3551f3 !important;
}
/* Custom syntax highlighting optimized for dark backgrounds with high contrast */
.fragment, div.line {
color: #F0F0F0 !important;
.fragment,
div.line {
color: #f0f0f0 !important;
}
/* Keywords (int, void, const, static, etc.) */
.keyword, .keywordtype {
color: #FF8BE6 !important;
font-weight: 500;
.keyword,
.keywordtype {
color: #ff8be6 !important;
font-weight: 500;
}
/* Control flow (if, else, return, for, while, etc.) */
.keywordflow {
color: #FF8BE6 !important;
font-weight: 500;
color: #ff8be6 !important;
font-weight: 500;
}
/* Comments */
.comment {
color: #8BC34A !important;
font-style: italic;
color: #8bc34a !important;
font-style: italic;
}
/* Preprocessor directives (#include, #define, etc.) */
.preprocessor {
color: #FFCC66 !important;
color: #ffcc66 !important;
}
/* String and character literals */
.stringliteral, .charliteral {
color: #B8E986 !important;
.stringliteral,
.charliteral {
color: #b8e986 !important;
}
/* Numbers */
span.charliteral {
color: #D4A5FF !important;
color: #d4a5ff !important;
}
/* Function names */
.functionname {
color: #6FE87C !important;
font-weight: 500;
color: #6fe87c !important;
font-weight: 500;
}
/* Line numbers */
span.lineno {
color: #8A8A8A !important;
background-color: transparent !important;
color: #8a8a8a !important;
background-color: transparent !important;
}
span.lineno a {
color: #8A8A8A !important;
background-color: transparent !important;
color: #8a8a8a !important;
background-color: transparent !important;
}