mkdocs_theme.yml 2.4 KB

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