mkdocs_theme.yml (2492B)
1 # Copyright (c) 2016-2022 Martin Donath <martin.donath@squidfunk.com> 2 3 # Permission is hereby granted, free of charge, to any person obtaining a copy 4 # of this software and associated documentation files (the "Software"), to 5 # deal in the Software without restriction, including without limitation the 6 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 7 # sell copies of the Software, and to permit persons to whom the Software is 8 # furnished to do so, subject to the following conditions: 9 10 # The above copyright notice and this permission notice shall be included in 11 # all copies or substantial portions of the Software. 12 13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE 16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 19 # IN THE SOFTWARE. 20 21 # Language for theme localization 22 language: en 23 24 # Text direction (can be ltr or rtl), default: ltr 25 direction: 26 27 # Feature flags for functionality that alters behavior significantly, and thus 28 # may be a matter of taste 29 features: [] 30 31 # Sets the primary and accent color palettes as defined in the Material Design 32 # documentation - possible values can be looked up in the getting started guide 33 palette: 34 35 # Primary color used for header, sidebar and links, default: indigo 36 primary: 37 38 # Accent color for highlighting user interaction, default: indigo 39 accent: 40 41 # Fonts used by Material, automatically loaded from Google Fonts - see the site 42 # for a list of available fonts 43 font: 44 45 # Default font for text 46 text: Roboto 47 48 # Fixed-width font for code listings 49 code: Roboto Mono 50 51 # From Material 5.x on, icons are inlined into the HTML and CSS as SVGs. Some 52 # icons that are part of the HTML can be configured and replaced 53 icon: 54 55 # Favicon to be rendered 56 favicon: assets/images/favicon.png 57 58 # Material includes the search in the header as a partial, not as a separate 59 # template, so it's correct that search.html is missing 60 include_search_page: false 61 62 # Material doesn't use MkDocs search functionality but provides its own. For 63 # this reason, only the search index needs to be built 64 search_index_only: true 65 66 # Static pages to build 67 static_templates: 68 - 404.html