Skip to content

Instantly share code, notes, and snippets.

@alicerunsonfedora
Created April 21, 2020 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alicerunsonfedora/60e9e785dfd885e304f52cd8d6cf8108 to your computer and use it in GitHub Desktop.
Save alicerunsonfedora/60e9e785dfd885e304f52cd8d6cf8108 to your computer and use it in GitHub Desktop.
Some additional customizations for the VS Code Academy City theme to improve the Ren'Py editing experience
{
"workbench.colorCustomizations": {
"[Academy City]": {
"activityBar.activeBackground": "#363450",
"activityBar.activeBorder": "#2fade5",
"button.background": "#61B8E3",
"button.foreground": "#212121",
"list.hoverBackground": "#363450",
"list.focusBackground": "#363450",
"list.activeSelectionBackground": "#363450",
"list.inactiveSelectionBackground": "#2b2a35",
"quickInput.background": "#201D2B",
"input.background": "#1D1A27",
"dropdown.background": "#1D1A27",
"input.border": "#2fade5",
"editorSuggestWidget.background": "#1D1A27",
"dropdown.border": "#363440",
"terminal.background": "#1D1A27",
"panel.background": "#201D2B",
"tab.activeBorder": "#2fade5",
"tab.hoverBackground": "#363450",
"statusBar.background": "#201D2B",
"editorGroupHeader.tabsBackground": "#201D2B",
"editor.lineHighlightBorder": "#363450",
"notifications.background": "#201D2B",
"editorGutter.addedBackground": "#22d6acde",
"editorGutter.modifiedBackground": "#61B8E3de",
"editorGutter.deletedBackground": "#D93163de",
"editorPane.background": "#1D1A27",
"editorWidget.border": "#363450",
"focusBorder": "#363450",
"sideBar.border": "#363450"
}
},
"editor.tokenColorCustomizations": {
"[Academy City]": {
"textMateRules": [
{
"name": "Ren'Py Label Names",
"scope": "entity.name.section.python.renpy.label",
"settings": {
"foreground": "#2FADE5",
"fontStyle": "bold"
}
},
{
"name": "Keywords",
"scope": "keyword",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Placeholders (String interpolations)",
"scope": "constant.other.placeholder.tags",
"settings": {
"foreground": "#F0B82B",
"fontStyle": ""
}
},
{
"name": "Strings",
"scope": "string.quoted.double",
"settings": {
"foreground": "#79f9cd"
}
},
{
"name": "Strings (Ren'Py)",
"scope": "string.quoted.double.single-line.python.renpy",
"settings": {
"fontStyle": "italic"
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment