Skip to content

Instantly share code, notes, and snippets.

@asottile
Created March 14, 2022 18:10
Show Gist options
  • Save asottile/aa9c9066ef338be26840635e953fda98 to your computer and use it in GitHub Desktop.
Save asottile/aa9c9066ef338be26840635e953fda98 to your computer and use it in GitHub Desktop.
notebook-theme.json
{
"name": "Notebook",
"settings": [
{
"settings": {
"background": "#BEB69D",
"foreground": "#111"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"fontStyle": "italic",
"foreground": "#302c26"
}
},
{
"name": "Punctuation",
"scope": "punctuation.section.embedded",
"settings": {
"background": "#FFFFFF"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"background": "#d4c764"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"background": "#acda6f"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"background": "#91c7c1"
}
},
{
"name": "User-defined constant",
"scope": "constant.character, constant.other",
"settings": {
"background": "#91c7c1"
}
},
{
"name": "Variable",
"scope": "variable.language, variable.other",
"settings": {
"#background": "#669352",
"background": "#92a477"
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"foreground": "#a00"
}
},
{
"name": "Entity",
"scope": "constant.character.entity",
"settings": {
"background": "#8FE6D3"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"background": "#A69C86"
}
},
{
"name": "Class name",
"scope": "entity.name.type.class, support.class",
"settings": {
"foreground": "#1D368F"
}
},
{
"name": "Function name",
"scope": "entity.name",
"settings": {
"fontStyle": "bold"
}
},
{
"name": "Tag name",
"scope": "entity.name.tag, entity.other.attribute-name.class.css, entity.other.attribute-name.id.css",
"settings": {
"background": "#B1A68F"
}
},
{
"name": "Library function",
"scope": [
"support.function",
"support.constant.property-value.css",
"support.function.builtin",
"support.function.magic",
"support.type.python"
],
"settings": {
"background": "#db859c",
"#background": "#F9559B"
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"background": "#BF363B",
"foreground": "#FFFFFF"
}
}
],
"uuid": "FE674D9A-27B3-4A5A-84F7-1CC67BD29531",
"user": "ddellspe",
"url": "https://github.com/filmgirl/TextMate-Themes/raw/master/Notebook.tmTheme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment