Mirror the rethink Gitea theme (data-theme=rethink) on the docs site: - docs/stylesheets/extra.css maps the exact palette onto Material's slate scheme: body #0a0f1f, nav #061541, text #eef1f6, primary #569bcc, accent #55bbff, borders #294274; square corners and blue card/table borders echoing the Gitea repo panels. - Force dark-only (drop the light/dark toggle; Gitea is dark-only). - Rename site to lowercase 'a rethink development' (site_name, copyright, landing H1). Verified: mkdocs build --strict clean; rendered landing + content pages in-browser against the live Gitea page — colors, header bar, links, and cards match. Signed-off-by: disqualifier <dev@disqualifier.me>
56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
site_name: a rethink development
|
|
site_description: Libraries, coding standards, and how to deploy on our network.
|
|
site_url: https://docs.rethinkstudios.io/
|
|
copyright: rethink development
|
|
|
|
extra_css:
|
|
- stylesheets/extra.css
|
|
|
|
theme:
|
|
name: material
|
|
language: en
|
|
palette:
|
|
scheme: slate
|
|
primary: custom
|
|
accent: custom
|
|
features:
|
|
- navigation.instant
|
|
- navigation.tracking
|
|
- navigation.top
|
|
- toc.follow
|
|
- search.suggest
|
|
- search.highlight
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
icon:
|
|
repo: fontawesome/brands/git-alt
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- attr_list
|
|
- md_in_html
|
|
- tables
|
|
- toc:
|
|
permalink: true
|
|
- pymdownx.details
|
|
- pymdownx.superfences
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- pymdownx.emoji:
|
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
|
|
plugins:
|
|
- search
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Libraries: libraries.md
|
|
- Standards: standards.md
|
|
- Workflow: workflow.md
|
|
- Deploy: deploy.md
|