From 1cb63bbe7691d3a1d5b92542563dfc96710a8a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilhem=20Faur=C3=A9?= Date: Fri, 2 Jun 2023 11:32:43 +0200 Subject: [PATCH] changed documents style to cyan --- spip2md/extended_models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spip2md/extended_models.py b/spip2md/extended_models.py index 5be10f8..54cd654 100644 --- a/spip2md/extended_models.py +++ b/spip2md/extended_models.py @@ -40,7 +40,7 @@ from spip2md.spip_models import ( SpipDocumentsLiens, SpipRubriques, ) -from spip2md.style import BLUE, BOLD, GREEN, WARNING_STYLE, YELLOW, esc +from spip2md.style import BLUE, BOLD, CYAN, GREEN, WARNING_STYLE, YELLOW, esc # Define recursive list type RecursiveList = list["str | RecursiveList"] @@ -104,7 +104,7 @@ class NormalizedArticle(SpipInterface, SpipArticles): class NormalizedDocument(SpipInterface, SpipDocuments): _fileprefix: str = "" - _style = (BOLD, BLUE) # Documents accent color is blue + _style = (BOLD, CYAN) # Documents accent color is blue def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)