/ mkdocs.yml
mkdocs.yml
 1  site_name: NPAC
 2  repo_url: https://github.com/npacore/npacore.github.io/
 3  edit_uri: edit/main/docs/
 4  theme:
 5    name: material
 6    custom_dir: docs
 7    logo: imgs/npac_correlationMatrix_BIDS.png
 8    favicon: imgs/npac_correlationMatrix_BIDS.png
 9    palette:
10      - primary: teal
11      - accent: red
12      - media: "(prefers-color-scheme: light)"
13        scheme: default
14        toggle:
15          icon: material/brightness-7
16          name: Switch to dark mode
17      - media: "(prefers-color-scheme: dark)"
18        scheme: slate
19        toggle:
20          icon: material/brightness-4
21          name: Switch to system preference
22  
23    features:
24      - content.code.annotate
25      - content.action.edit
26  markdown_extensions:
27    - abbr
28    - attr_list
29    - admonition
30    - pymdownx.details
31    - pymdownx.superfences
32    - pymdownx.snippets
33    - footnotes
34    - pymdownx.highlight:
35        anchor_linenums: true
36        line_spans: __span
37        pygments_lang_class: true
38    - pymdownx.emoji:
39        emoji_index: !!python/name:materialx.emoji.twemoji
40        emoji_generator: !!python/name:materialx.emoji.to_svg
41    - pymdownx.inlinehilite
42