Twin Themes
Publisher: twin-themesThemes in package: 4
A pair of sibling dark themes for VSCode & VSCodium.
A pair of sibling dark themes for VSCode & VSCodium.
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, text.html.markdown, meta.object-literal.key | #BCC0CC | — |
| punctuation, punctuation.accessor, punctuation.definition.entity, comment.punctuation.comma.sass | #C181E4 | — |
| entity.name.tag | #D5AFE9 | — |
| entity.other.attribute-name, text.html.basic entity.other.attribute-name | #E69F99 | — |
| string, string.quoted | #F1D093 | — |
| text.html.derivative | #BCC0CC | — |
| comment, punctuation.definition.comment | #E69F9960 | — |
| constant.numeric | #58D59B | — |
| entity.name, entity.name.tag.css | #A4D0EF | — |
| source.css support.type.property-name, source.sass support.type.property-name, source.scss support.type.property-name, source.less support.type.property-name, source.stylus support.type.property-name, source.postcss support.type.property-name | #D5AFE9 | — |
| support.constant | #E69F99 | — |
| support.constant.property-value.css | #A4D0EF | — |
| keyword.control, storage.type | #D5AFE9 | — |
| variable, meta.block variable.other, variable.other.readwrite | #DADDDC | — |
| variable.language | #D5AFE9 | — |
| variable.other.readwrite.class, variable.other.readwrite.instance | #E69F99 | — |
| keyword.control.conditional, keyword.control.rust, keyword.control.trycatch | #58D59B | — |
| entity.other.inherited-class, punctuation.definition.template-expression | #A4D0EF | — |
| meta.brace, punctuation.definition, punctuation.definition.block, punctuation.definition.parameters, punctuation.definition.string, punctuation.definition.tag, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, punctuation.section, punctuation.section.embedded, punctuation.separator.inheritance.php, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #E69F99 | — |
| constant.character.numeric, support.function, keyword.other.special-method, string.other.link, entity.name.command.shell, storage.type.function.arrow.js, keyword.operator | #58D59B | — |
| variable.parameter | #A4D0EF | — |
| markup.bold, markup.bold string | #BCC0CC | bold |
| markup.italic | #BCC0CC | italic |
| source.python | #E69F99 | — |
| keyword.operator.class.php | #58D59B | — |
| entity.name.function, entity.name.type.class.php, variable.function, keyword.control.filter | #E69F99 | — |
| constant.language.color.rgb-value.css, source.css, punctuation.definition.constant, constant.numeric, keyword.other.unit, keyword.control.unit.css, support.constant.color.w3c-extended-color-name, support.constant.font-name, support.constant.property-value.css | #E3EDAB | — |
| source.ini, source.fish, source.shell | #E69F99 | — |
| source.json meta.structure.dictionary.json support.type.property-name.json, storage.modifier | #D5AFE9 | — |
| markdown.heading, punctuation.definition.heading.markdown, entity.name.section.markdown, markup.heading | markup.heading entity.name, markup.heading.markdown punctuation.definition.heading.markdown | #D5AFE9 | — |
| markup.quote | #E69F99 | italic |
| markup.bold markup.italic, markup.italic markup.bold, markup.quote markup.bold, markup.bold markup.italic string, markup.italic markup.bold string, markup.quote markup.bold string | #BCC0CC | bold |
| markup.strikethrough | — | strikethrough |
| markup.underline | #F1D093 | underline |
| *url*, *link*, *uri* | — | underline |
| source.go | #D5AFE9 | — |
| constant.language | #A4D0EF | — |
| keyword, variable.other.object.js | #D5AFE9 | — |
| support.class | #E3EDAB | — |
| support.type.property-name.toml, support.type.property-name.table.toml, entity.name.tag.yaml, meta.tag.sgml, constant.other.option, string.unquoted.argument.shell, variable.other.property.php, entity.other.inherited-class.php, support.class.builtin, support.class.php | #E69F99 | — |
| string.quoted.single.literal.line.toml, string.unquoted.plain.out.yaml, keyword.other, meta.function-call | #D5AFE9 | — |
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}!`;
}