Skip to content

Instantly share code, notes, and snippets.

@BenBanerjeeRichards
Created September 24, 2021 09:06
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 BenBanerjeeRichards/2465ba5160875bcd3dc3230a704a9982 to your computer and use it in GitHub Desktop.
Save BenBanerjeeRichards/2465ba5160875bcd3dc3230a704a9982 to your computer and use it in GitHub Desktop.
{
"name": "Notes",
"variables": {
"heading": "#000000",
"heading-background": "#ccc",
"text": "#666666",
"bullet": "#111111",
"link": "#1188ee",
"code": "#333",
"task-completed": "#888",
"task-completed-icon": "#005500",
"task-open-icon": "#000",
"task-open": "#444",
"task-cancelled": "#888",
"task-cancelled-icon": "#550000"
},
"globals":
{
"background": "#ddd",
"foreground": "var(text)",
"caret": "white"
},
"rules":
[
{
"name": "Primary Heading",
"scope": "heading.primary",
"foreground": "var(heading)",
"background": "var(heading-background)",
"font_style": "bold",
},
{
"name": "Secondary Heading",
"scope": "heading.secondary",
"foreground": "var(heading)",
"font_style": "bold",
},
{
"name": "Bullet",
"scope": "bullet",
"foreground": "var(bullet)",
"font_style": "bold",
},
{
"name": "Link",
"scope": "link",
"foreground": "var(link)",
"font_style": "",
},
{
"name": "Inline code",
"scope": "code.inline",
"foreground": "var(code)",
"font_style": "",
},
{
"name": "Task completed",
"scope": "task.completed",
"foreground": "var(task-completed)",
"font_style": "italic",
},
{
"name": "Task completed Icon",
"scope": "task.icon-completed",
"foreground": "var(task-completed-icon)",
"font_style": "italic",
},
{
"name": "Task Open",
"scope": "task.open",
"foreground": "var(task-open)",
"font_style": "italic",
},
{
"name": "Task open icon",
"scope": "task.icon-open",
"foreground": "var(task-open-icon)",
"font_style": "italic",
},
{
"name": "Task cancelled",
"scope": "task.cancelled",
"foreground": "var(task-cancelled)",
"font_style": "italic",
},
{
"name": "Task cancelled icon",
"scope": "task.icon-cancelled",
"foreground": "var(task-cancelled-icon)",
"font_style": "italic",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment