943acbc573
Durcit la convention de nommage des projets (dérive constatée : 'Sliding Automation', 'code_versioning'... au lieu des formes canoniques). - trilium_api.py : projets_canoniques() lit le référentiel = valeurs du label projet sur les notes de type=projet (source unique, pas de constante en dur). Note-projet CodeVersioning créée (manquait). - mcp_server.py : _valider_projet() branché dans les 6 tools de création (add_decision/history/backlog, new_conversation, create_entite, add_skill). Refuse un projet non canonique (suggestion si faute) ou inconnu (renvoi au processus de création de projet). Ne verrouille pas si référentiel illisible. - lint_audit.py : VAL-nommage aligné sur le référentiel (attrape casse, espace ET snake_case ; l'ancien 'contient un espace' ratait code_versioning). - Données : 79 notes ré-étiquetées vers les 3 formes canoniques. Quality by design : l'erreur de nommage devient impossible à l'écriture, le Lint n'est plus que le filet de sécurité.
157 lines
5.3 KiB
Python
157 lines
5.3 KiB
Python
"""
|
|
pygments.styles.nord
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
pygments version of the "nord" theme by Arctic Ice Studio
|
|
https://www.nordtheme.com/
|
|
|
|
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
from pygments.style import Style
|
|
from pygments.token import Keyword, Name, Comment, String, Error, Number, \
|
|
Operator, Generic, Whitespace, Punctuation, Text, Token
|
|
|
|
|
|
__all__ = ['NordStyle', 'NordDarkerStyle']
|
|
|
|
|
|
class NordStyle(Style):
|
|
"""
|
|
Pygments version of the "nord" theme by Arctic Ice Studio.
|
|
"""
|
|
name = 'nord'
|
|
|
|
line_number_color = "#D8DEE9"
|
|
line_number_background_color = "#242933"
|
|
line_number_special_color = "#242933"
|
|
line_number_special_background_color = "#D8DEE9"
|
|
|
|
background_color = "#2E3440"
|
|
highlight_color = "#3B4252"
|
|
|
|
styles = {
|
|
Token: "#d8dee9",
|
|
|
|
Whitespace: '#d8dee9',
|
|
Punctuation: '#eceff4',
|
|
|
|
Comment: 'italic #616e87',
|
|
Comment.Preproc: '#5e81ac',
|
|
|
|
Keyword: 'bold #81a1c1',
|
|
Keyword.Pseudo: 'nobold #81a1c1',
|
|
Keyword.Type: 'nobold #81a1c1',
|
|
|
|
Operator: 'bold #81a1c1',
|
|
Operator.Word: 'bold #81a1c1',
|
|
|
|
Name: '#d8dee9',
|
|
Name.Builtin: '#81a1c1',
|
|
Name.Function: '#88c0d0',
|
|
Name.Class: '#8fbcbb',
|
|
Name.Namespace: '#8fbcbb',
|
|
Name.Exception: '#bf616a',
|
|
Name.Variable: '#d8dee9',
|
|
Name.Constant: '#8fbcbb',
|
|
Name.Entity: '#d08770',
|
|
Name.Attribute: '#8fbcbb',
|
|
Name.Tag: '#81a1c1',
|
|
Name.Decorator: '#d08770',
|
|
|
|
String: '#a3be8c',
|
|
String.Doc: '#616e87',
|
|
String.Interpol: '#a3be8c',
|
|
String.Escape: '#ebcb8b',
|
|
String.Regex: '#ebcb8b',
|
|
String.Symbol: '#a3be8c',
|
|
String.Other: '#a3be8c',
|
|
|
|
Number: '#b48ead',
|
|
|
|
Generic.Heading: 'bold #88c0d0',
|
|
Generic.Subheading: 'bold #88c0d0',
|
|
Generic.Deleted: '#bf616a',
|
|
Generic.Inserted: '#a3be8c',
|
|
Generic.Error: '#bf616a',
|
|
Generic.Emph: 'italic',
|
|
Generic.Strong: 'bold',
|
|
Generic.EmphStrong: 'bold italic',
|
|
Generic.Prompt: 'bold #616e88',
|
|
Generic.Output: '#d8dee9',
|
|
Generic.Traceback: '#bf616a',
|
|
|
|
Error: '#bf616a',
|
|
Text: '#d8dee9',
|
|
}
|
|
|
|
|
|
class NordDarkerStyle(Style):
|
|
"""
|
|
Pygments version of a darker "nord" theme by Arctic Ice Studio
|
|
"""
|
|
name = 'nord-darker'
|
|
|
|
line_number_color = "#D8DEE9"
|
|
line_number_background_color = "#242933"
|
|
line_number_special_color = "#242933"
|
|
line_number_special_background_color = "#D8DEE9"
|
|
|
|
background_color = "#242933"
|
|
highlight_color = "#3B4252"
|
|
|
|
styles = {
|
|
Token: "#d8dee9",
|
|
|
|
Whitespace: '#d8dee9',
|
|
Punctuation: '#eceff4',
|
|
|
|
Comment: 'italic #616e87',
|
|
Comment.Preproc: '#5e81ac',
|
|
|
|
Keyword: 'bold #81a1c1',
|
|
Keyword.Pseudo: 'nobold #81a1c1',
|
|
Keyword.Type: 'nobold #81a1c1',
|
|
|
|
Operator: 'bold #81a1c1',
|
|
Operator.Word: 'bold #81a1c1',
|
|
|
|
Name: '#d8dee9',
|
|
Name.Builtin: '#81a1c1',
|
|
Name.Function: '#88c0d0',
|
|
Name.Class: '#8fbcbb',
|
|
Name.Namespace: '#8fbcbb',
|
|
Name.Exception: '#bf616a',
|
|
Name.Variable: '#d8dee9',
|
|
Name.Constant: '#8fbcbb',
|
|
Name.Entity: '#d08770',
|
|
Name.Attribute: '#8fbcbb',
|
|
Name.Tag: '#81a1c1',
|
|
Name.Decorator: '#d08770',
|
|
|
|
String: '#a3be8c',
|
|
String.Doc: '#616e87',
|
|
String.Interpol: '#a3be8c',
|
|
String.Escape: '#ebcb8b',
|
|
String.Regex: '#ebcb8b',
|
|
String.Symbol: '#a3be8c',
|
|
String.Other: '#a3be8c',
|
|
|
|
Number: '#b48ead',
|
|
|
|
Generic.Heading: 'bold #88c0d0',
|
|
Generic.Subheading: 'bold #88c0d0',
|
|
Generic.Deleted: '#bf616a',
|
|
Generic.Inserted: '#a3be8c',
|
|
Generic.Error: '#bf616a',
|
|
Generic.Emph: 'italic',
|
|
Generic.Strong: 'bold',
|
|
Generic.Prompt: 'bold #616e88',
|
|
Generic.Output: '#d8dee9',
|
|
Generic.Traceback: '#bf616a',
|
|
|
|
Error: '#bf616a',
|
|
Text: '#d8dee9',
|
|
}
|