• Home
  • Raw
  • Download

Lines Matching +full:kconfig +full:- +full:ext

7 #     https://www.apache.org/licenses/LICENSE-2.0
22 # The master toctree document. # inclusive-language: ignore
27 copyright = f'{date.today().year} The Pigweed Authors' # pylint: disable=redefined-builtin
44 "pw_docgen.sphinx.kconfig",
50 "sphinx.ext.autodoc", # Automatic documentation for Python code
51 "sphinx.ext.napoleon", # Parses Google-style docstrings
52 "sphinxarg.ext", # Automatic documentation of Python argparse
56 "sphinx_copybutton", # Copy-to-clipboard button on code blocks
61 # When a user clicks the copy-to-clipboard button the `$ ` prompt should not be
62 # copied: https://sphinx-copybutton.readthedocs.io/en/latest/use.html
115 # FontAwesome for mermaid and sphinx-design
116 "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css",
130 # Make the logo text more amaranth-like
131 'color-sidebar-brand-text': '#b529aa',
132 'color-sidebar-search-border': '#b529aa',
133 'color-sidebar-link-text--top-level': '#85004d',
134 'color-sidebar-link-text': '#016074',
135 'color-sidebar-item-background--current': '#f0f0f0',
136 'color-sidebar-item-background--hover': '#ffe2f3',
137 'color-sidebar-item-expander-background--hover': '#ffe2f3',
139 'color-api-function-border': '#cccccc',
140 'color-api-function-background': '#f0f0f0',
141 'color-api-class-background': '#e7f2fa',
142 'color-api-class-foreground': '#2980b9',
143 'color-api-class-border': '#6ab0de',
145 'color-api-pre-name': '#2980b9',
147 'color-api-name': '#2980b9',
148 'color-inline-code-background': '#fafafa',
149 'color-inline-code-border': '#cccccc',
150 'color-text-selection-background': '#1d5fad',
151 'color-text-selection-foreground': '#ffffff',
153 'color-highlight-on-target': '#ffffcc',
155 'color-code-hll-background': '#ffffcc',
156 'color-section-button': '#b529aa',
157 'color-section-button-hover': '#fb71fe',
160 'color-sidebar-brand-text': '#fb71fe',
161 'color-sidebar-search-border': '#e815a5',
162 'color-sidebar-link-text--top-level': '#ff79c6',
163 'color-sidebar-link-text': '#8be9fd',
164 'color-sidebar-item-background--current': '#2a3037',
165 'color-sidebar-item-background--hover': '#30353d',
166 'color-sidebar-item-expander-background--hover': '#4c333f',
168 'color-api-function-border': '#575757',
169 'color-api-function-background': '#2b2b2b',
170 'color-api-class-background': '#222c35',
171 'color-api-class-foreground': '#87c1e5',
172 'color-api-class-border': '#5288be',
174 'color-api-pre-name': '#87c1e5',
176 'color-api-name': '#87c1e5',
177 'color-code-background': '#2d333b',
178 'color-inline-code-background': '#2d333b',
179 'color-inline-code-border': '#575757',
180 'color-text-selection-background': '#2674bf',
181 'color-text-selection-foreground': '#ffffff',
183 'color-highlight-on-target': '#ffc55140',
185 'color-code-hll-background': '#ffc55140',
186 'color-section-button': '#fb71fe',
187 'color-section-button-hover': '#b529aa',
189 # slightly less high-contrast.
191 # 'color-foreground-primary': '#ffffffcc', # Main text and headings
192 # 'color-foreground-secondary': '#9ca0a5', # Secondary text
193 # 'color-foreground-muted': '#81868d', # Muted text
194 # 'color-foreground-border': '#666666', # Content borders
195 'color-background-primary': '#1c2128', # Content
196 'color-background-secondary': '#22272e', # Navigation and TOC
197 'color-background-hover': '#30353dff', # Navigation-item hover
198 'color-background-hover--transparent': '#30353d00',
199 'color-background-border': '#444c56', # UI borders
200 'color-background-item': '#373e47', # "background" items (eg: copybutton)
202 # 'color-announcement-background': '#000000dd',
203 # 'color-announcement-text': '#eeebee',
205 # 'color-brand-primary': '#2b8cee',
206 # 'color-brand-content': '#368ce2',
208 # 'color-highlighted-background': '#083563',
210 # 'color-guilabel-background': '#08356380',
211 # 'color-guilabel-border': '#13395f80',
213 # 'color-api-keyword': 'var(--color-foreground-secondary)',
214 # 'color-highlight-on-target': '#333300',
216 'color-admonition-background': 'var(--color-background-secondary)',
218 'color-card-border': 'var(--color-background-border)',
219 'color-card-background': 'var(--color-background-secondary)',
220 # 'color-card-marginals-background': 'var(--color-background-hover)',
222 'sd-color-card-background': 'var(--color-background-secondary)',
223 'sd-color-card-border': 'var(--color-background-border)',
227 # sphinx-sitemap needs this:
228 # https://sphinx-sitemap.readthedocs.io/en/latest/getting-started.html#usage
231 # https://sphinx-sitemap.readthedocs.io/en/latest/advanced-configuration.html
248 # Client-side redirects. See //docs/contributing/docs/website.rst.
315 # inclusive-language: disable
317 # https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-cpp_id_attributes
318 # inclusive-language: enable
336 # https://github.com/sphinx-doc/sphinx/issues/2090#issuecomment-572902572
343 app.connect('env-get-outdated', env_get_outdated)
344 app.connect("autodoc-skip-member", do_not_skip_init)