Skip to content

Instantly share code, notes, and snippets.

@fimars
Created January 5, 2025 11:07
Show Gist options
  • Save fimars/45c6cc571ea8c2d5e149a61b2ffaee77 to your computer and use it in GitHub Desktop.
Save fimars/45c6cc571ea8c2d5e149a61b2ffaee77 to your computer and use it in GitHub Desktop.
Ace in vscode
{
"name": "Ace-TM Theme",
"type": "dark",
"colors": {
"editor.background": "#352e3c",
"editor.foreground": "#d6dbd8",
"editorGutter.background": "#352e3c",
"editorGutter.foreground": "#7d817f",
"editorCursor.foreground": "#eee",
"editor.lineHighlightBackground": "rgba(0, 0, 0, 0.07)",
"editor.selectionBackground": "#4f495f",
"editorBracketMatch.background": "#c5c8c6",
"editorBracketMatch.border": "#c5c8c6",
"editorIndentGuide.background": "none",
"editorWhitespace.foreground": "#7d817f"
},
"tokenColors": [
{
"scope": ["entity.name.tag", "keyword", "meta.tag", "storage"],
"settings": {
"foreground": "#7daad1"
}
},
{
"scope": ["constant.character", "constant.language", "constant.numeric", "constant.other"],
"settings": {
"foreground": "#b294bb"
}
},
{
"scope": ["support.constant", "support.function"],
"settings": {
"foreground": "#87c6be"
}
},
{
"scope": ["support.type", "support.class"],
"settings": {
"fontStyle": "italic",
"foreground": "#87c6be"
}
},
{
"scope": ["keyword.operator"],
"settings": {
"foreground": "inherit"
}
},
{
"scope": ["string"],
"settings": {
"foreground": "#f0d974"
}
},
{
"scope": ["comment", "comment.doc"],
"settings": {
"foreground": "#7d817f"
}
},
{
"scope": ["variable"],
"settings": {
"foreground": "#d85b7b"
}
},
{
"scope": ["entity.name.function", "entity.other", "entity.other.attribute-name"],
"settings": {
"foreground": "#92c74d"
}
},
{
"scope": ["markup.heading"],
"settings": {
"foreground": "#7daad1"
}
},
{
"scope": ["markup.italic"],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": ["markup.bold"],
"settings": {
"fontStyle": "bold"
}
},
{
"scope": ["markup.underline"],
"settings": {
"fontStyle": "underline"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment