Here is what should look like the JSON for Python Docs String:
atom-text-editor::shadow .string.quoted.double.block.python {
color: #282a2e;
// Quotes
.punctuation.definition {
// color: #282a2e;
}
}
Important note
As suggested by Katharine Long, you should use Brunel-syntax, have a look at her answer here.
You may create you own theme or update an existing one.
Press Ctrl+Shift+P or ⌘ + ⌥ + P (macOS and start typing "Generate Syntax Theme" to generate a new theme package. Select "Generate Syntax Theme," and you'll be asked for the path where your theme will be created. Let's call ours motif-syntax.
Open a file written in the language that you want to specify the colors for in Atom.
If you want to do the same thing from the menu, go choosePackages > Command Palette > Toggle, and type log cursor scope into the Command Palette, which has just appeared, and select Editor: Log Cursor Scope.
If the above did not work try this other way. Go from the menu top left corner file, then click on style-sheet.
It will open a new style-sheet called base.less. Add the JSON below and save.
Documentation & Referance##