Kintsugi
Publisher: ahmedhatemThemes in package: 4
A sophisticated theme for the discerning developer, inspired by the Japanese art of Kintsugi. Available in dark and light variants.
A sophisticated theme for the discerning developer, inspired by the Japanese art of Kintsugi. Available in dark and light variants.
Full workbench mockup using this variant's colors and tokenColors.
Workbench UI color keys from the theme JSON colors map.
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| text, source, variable | #BCAC8F | — |
| comment, punctuation.comment | #5f5f5f | — |
| punctuation, delimiter, bracket, brace, paren, delimiter.tag, punctuation.tag, tag.html, tag.xml, meta.property-value punctuation.separator.key-value, punctuation.definition.metadata.md, string.link.md, meta.brace, punctuation.definition.string, punctuation.definition.string.begin, punctuation.definition.string.end | #7f7b66 | — |
| keyword, meta.property-value.keyword, support.constant.property-value.keyword, meta.preprocessor.keyword, keyword.other.use, keyword.other.function.use, keyword.other.namespace, keyword.other.new, keyword.other.special-method, keyword.other.unit, keyword.other.use-as | #D66848 | bold |
| storage, entity.name.tag, keyword.operator.new, variable.language.this, variable.language.self, meta.qualified_type.cpp entity.name.type.cpp | #DBAD49 | bold |
| meta.definition.variable.java storage.type.java, meta.catch.parameters.java storage.type.java, meta.import.java storage.modifier.import.java, meta.function-call.python meta.function-call.generic.python, meta.function.python support.variable.magic.python | #798283 | — |
| keyword.operator | #E08542 | |
| string, meta.property-value.string, support.constant.property-value.string, meta.structure.dictionary.value.json string.quoted.double.json, meta.structure.dictionary.json string.quoted.double.json, meta.preprocessor string, string.template | #cc7f66 | — |
| constant.character.escape | #798283 | — |
| constant.numeric, meta.property-value.numeric, support.constant.property-value.numeric, meta.property-value.color, support.constant.property-value.color, constant.language | #DB9833 | — |
| constant.character, constant.other, entity.name.function, entity.name.class, entity.other.inherited-class, entity.other.attribute-name, entity.name, entity.name.type.class, entity.other.attribute-name.html, support.type.property-name, entity.name.tag.table, meta.structure.dictionary.json string.quoted.double.json | #798283 | — |
| storage.type.annotation.java, storage.type.java, storage.type.object.array.java, entity.name.type, meta.qualified_type.cpp entity.name.type.cpp, meta.import.java storage.modifier.import.java | — | |
| meta.ptr, meta.pointer, meta.address, meta.array.cxx | #EBA96C | — |
| meta.preprocessor | #798283 | — |
| support.type, support.class, support.function, support.constant | #E08542 | — |
| storage.type.generic, entity.name.type.template.cpp, meta.type.annotation.ts meta.type.parameters.ts entity.name.type.ts | #E08542 | |
| storage.type.annotation.java, entity.name.type.lifetime, punctuation.definition.lifetime, meta.attribute.rust, punctuation.definition.attribute.rust, meta.decorator, punctuation.definition.decorator, entity.name.function.decorator, meta.decorator.ts variable.other.readwrite.ts | #678E87 | — |
| entity.name.tag.tsx, entity.name.tag.jsx | #DBAD49 | bold |
| invalid, invalid.deprecated | #b38f8f | italic bold |
| meta.diff, meta.diff.header | #75715E | — |
| markup.deleted | #b38f8f | — |
| markup.inserted | #a3be8c | — |
| markup.changed | #ebcb8b | — |
| punctuation.definition.heading.md, entity.name.type.md, beginning.punctuation | #798283 | — |
| markup.heading, entity.name.section, markup.bold | #DBAD49 | bold |
| markup.raw, markup.inline.raw, markup.fenced, markup.fenced_code | #cc7f66 | — |
| markup.link, string.other.link.title, string.other.link.description, meta.link.inline, meta.image.inline | #798283 | — |
| variable.language.makefile, variable.other.makefile | #798283 | — |
| markup.italic | — | italic |
| entity.other.attribute-name.class.css | #E08542 | — |
| entity.name.tag.css | #DBAD49 | — |
| meta.property-name.css | #798283 | — |
TypeScript sample highlighted with this variant's colors and tokenColors.
export interface User {
id: string;
name: string;
role: "admin" | "member";
tags: string[];
}
/**
* Fetch user data by ID
* @param id
* @returns User object or null if ID is invalid
*/
export async function fetchUser(id: string): Promise<User | null> {
if (!id) {
return null;
}
const response = await fetch(`/api/users/${id}`, {
method: "GET",
headers: { Accept: "application/json" },
});
if (!response.ok) {
throw new Error(`HTTP ${response.status}`);
}
return (await response.json()) as User;
}
function greet(user: User): string {
// Simple greeting function that uses the user's name
return `Hello, ${user.name}!`;
}
export interface User {
id: string;
name: string;
role: "admin" | "member";
tags: string[];
}
/**
* Fetch user data by ID
* @param id
* @returns User object or null if ID is invalid
*/
export async function fetchUser(id: string): Promise<User | null> {
if (!id) {
return null;
}
const response = await fetch(`/api/users/${id}`, {
method: "GET",
headers: { Accept: "application/json" },
});
if (!response.ok) {
throw new Error(`HTTP ${response.status}`);
}
return (await response.json()) as User;
}
function greet(user: User): string {
// Simple greeting function that uses the user's name
return `Hello, ${user.name}!`;
}