Files
context-continuity/venv.old-py38/lib/python3.9/site-packages/pygments/styles/friendly_grayscale.py
T
Master 943acbc573 feat: referentiel projets dynamique + validation nommage by design
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é.
2026-07-17 14:59:33 +02:00

81 lines
2.8 KiB
Python

"""
pygments.styles.friendly_grayscale
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A style based on friendly style.
The color values of the friendly style have been converted to grayscale
using the luminosity value calculated by
http://www.workwithcolor.com/color-converter-01.htm
: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
__all__ = ['FriendlyGrayscaleStyle']
class FriendlyGrayscaleStyle(Style):
"""
A modern grayscale style based on the friendly style.
.. versionadded:: 2.11
"""
name = 'friendly_grayscale'
background_color = "#f0f0f0"
styles = {
Whitespace: "#bbbbbb",
Comment: "italic #959595",
Comment.Preproc: "noitalic #575757",
Comment.Special: "noitalic bg:#F4F4F4",
Keyword: "bold #575757",
Keyword.Pseudo: "nobold",
Keyword.Type: "nobold #4F4F4F",
Operator: "#666666",
Operator.Word: "bold #575757",
Name.Builtin: "#575757",
Name.Function: "#3F3F3F",
Name.Class: "bold #7E7E7E",
Name.Namespace: "bold #7E7E7E",
Name.Exception: "#575757",
Name.Variable: "#9A9A9A",
Name.Constant: "#A5A5A5",
Name.Label: "bold #363636",
Name.Entity: "bold #848484",
Name.Attribute: "#707070",
Name.Tag: "bold #3B3B3B",
Name.Decorator: "bold #555555",
String: "#717171",
String.Doc: "italic",
String.Interpol: "italic #9F9F9F",
String.Escape: "bold #717171",
String.Regex: "#575757",
String.Symbol: "#676767",
String.Other: "#7E7E7E",
Number: "#888888",
Generic.Heading: "bold #373737",
Generic.Subheading: "bold #5A5A5A",
Generic.Deleted: "#545454",
Generic.Inserted: "#7D7D7D",
Generic.Error: "#898989",
Generic.Emph: "italic",
Generic.Strong: "bold",
Generic.EmphStrong: "bold italic",
Generic.Prompt: "bold #7E7E7E",
Generic.Output: "#888888",
Generic.Traceback: "#6D6D6D",
Error: "border:#898989"
}