fix(pygments): functions should be blue, not sapphire (#79)

This commit is contained in:
Hammy 2024-09-08 22:06:10 +01:00 committed by GitHub
parent 1a1948e208
commit 0bdf4e025e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -77,7 +77,7 @@ def _make_styles(colors: FlavorColors) -> dict[_TokenType, str]:
Name.Entity: colors.text.hex,
Name.Exception: colors.text.hex,
# def __Name.Label__(
Name.Function: colors.sapphire.hex,
Name.Function: colors.blue.hex,
Name.Label: f"{colors.teal.hex} italic",
Name.Namespace: colors.text.hex,
Name.Other: colors.text.hex,