Metadata-Version: 2.2
Name: mkdocs-tccp-docs-styles
Version: 0.2.7
Summary: MkDocs plugin for TCCP documentation styles
Author-email: Jeff Bendixsen <jeff_bendixsen@trimble.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mkdocs>=1.0.0

# TCCP Docs Styles MkDocs Plugin

This plugin adds custom styles to a MkDocs project that uses MkDocs Material. 

- Modus light and dark theme
- Modus themed admonitions
- Call to action buttons
- Modus color variables

Check out the official [Modus Style Guide](https://modus.trimble.com/)



## Installation

```bash
pip install tccp-docs-styles
```

## Usage

Add to your mkdocs.yml file

```yml

plugins:
  - tccp-docs-styles
      
```

## Dependencies

This plugin expects the following markdown extensions to be installed

```yml

markdown_extensions:
  - admonition
  - pymdownx.details
  - pymdownx.superfences  
  - attr_list

```

