Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
PROJECT_NAME = LiveKit ESP32 SDK
PROJECT_ICON = customization/favicon.ico
OUTPUT_DIRECTORY = ./output
OPTIMIZE_OUTPUT_FOR_C = YES
WARN_IF_UNDOCUMENTED = YES
Expand All @@ -17,4 +18,11 @@ TIMESTAMP = YES
INLINE_SIMPLE_STRUCTS = YES
TYPEDEF_HIDES_STRUCT = YES
SHOW_FILES = NO
LAYOUT_FILE = ./layout.xml
TOC_EXPAND = YES
LAYOUT_FILE = ./layout.xml
HTML_HEADER = customization/header.html
PROJECT_NUMBER = v0.2.0
FULL_SIDEBAR = NO
HTML_EXTRA_STYLESHEET = customization/doxygen-awesome.css \
customization/custom.css
HTML_COLORSTYLE = LIGHT # required with Doxygen >= 1.9.5
51 changes: 51 additions & 0 deletions docs/customization/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");

html {
--font-family: "Public Sans", -apple-system, Helvetica Neue, sans-serif;
--font-family-monospace: "Fira Code", SFMono-Regular, SF Mono, Menlo, Consolas,
monospace;
--primary-color: rgb(10, 37, 159);
--primary-dark-color: rgb(22, 35, 89);
--primary-light-color: rgb(172, 175, 191);
--fragment-link: var(--primary-color);
}

#main-nav {
border-bottom: none;
}

#projectname {
display: flex;
gap: 0.35em;
}

#projectnumber {
background-color: #eee;
border-radius: var(--border-radius-medium);
padding-right: 0.5em;
padding-left: 0.25em;
}

#nav-sync {
display: none;
}

#nav-tree {
border-color: var(--separator-color);
}

#page-nav {
background-color: var(--side-nav-background);
border-left: none;
}

ul.page-outline li.vis {
background-color: rgba(0, 0, 0, 0.025);
}

.arrow {
vertical-align: unset;
text-align: unset;
margin-right: 0;
height: unset;
}
Loading
Loading