built-in constants

hi! i’m trying to customize the colors for Python to match the website theme. For built-in constants, which tag would it belong to? I’ve used t.variableName but that also changes others like the self keyword. Any tips on how I can identify what part is what? thanks!

@lezer/python does not tag built-in variables different from regular ones (and can’t, really, without tracking variable scopes, since they can be shadowed).

got it. thank you!