Multi Material Dark Theme
Publisher: Rafael-AvalosThemes in package: 2
Multi Material Dark is a visually appealing dark theme for Visual Studio Code. It offers two variations: Night and Dark, each providing a unique coding experience.
Multi Material Dark is a visually appealing dark theme for Visual Studio Code. It offers two variations: Night and Dark, each providing a unique coding experience.
Full workbench mockup using this variant's colors and tokenColors.
Loading...
Workbench UI color keys from the theme JSON colors map.
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| comment | #888888 | — |
| punctuation.accessor.js | #00aeff | bold |
| string | #FFF59D | — |
| constant.numeric | #ff5990 | — |
| constant.language | #ff5990 | — |
| constant.character, constant.other | #ff5990 | — |
| variable | #ffffff | italic |
| meta.var.expr.js | #ffffff | bold |
| variable.other.object.property.js | #fc0054 | italic |
| keyword | #E91E63 | — |
| storage | #E91E63 | |
| storage.type | #00aeff | italic |
| entity.name.class | #9EE34F | underline |
| entity.other.inherited-class | #9EE34F | italic underline |
| entity.name.function | #9EE34F | |
| variable.parameter | #FFAB40 | italic |
| entity.name.tag | #E91E63 | |
| entity.other.attribute-name | #9EE34F | |
| support.function | #81D4FA | |
| support.constant | #81D4FA | |
| support.type, support.class | #81D4FA | italic |
| support.other.variable | — | |
| support.other.namespace, entity.name.type.namespace | #FFB2F9 | — |
| support.other.namespace.use-as.php | #81D4FA | — |
| variable.language.namespace.php | #D66990 | — |
| punctuation.separator.inheritance.php | #E91E63 | — |
| support.function.misc.css, support.constant.property-value.css, support.constant.font-name.css | #FFF59D | — |
| meta.tag.template.value.twig, meta.tag.template.block.twig | #CD5AC5 | — |
| keyword.control.twig | #E05D8C | — |
| variable.other.twig | #E5A5E0 | — |
| variable.other.property.twig | #FFE1FC | — |
| constant.language.twig | #FFD2A6 | — |
| constant.numeric.twig | #FFD0FB | — |
| support.function.twig | #90E7F7 | — |
| meta.function-call.other.twig | #FAB85A | — |
| meta.function-call.twig | #FAB85A | — |
| invalid | #F8F8F0 | |
| invalid.deprecated | #F8F8F0 | — |
| text source | — | — |
| meta.diff, meta.diff.header | #E0EDDD | bold |
| markup.deleted | #D32F2F | |
| markup.changed | #E53935 | |
| markup.inserted | #60CF30 | — |
| meta.diff, meta.diff.range | #3BC0F0 | — |
| markup.heading.markdown, markup.heading.1.markdown, markup.heading.2.markdown | #9EE34F | — |
| markup.bold.markdown | #F8F8F2 | bold |
| markup.italic.markdown | #F8F8F2 | italic |
| punctuation.definition.bold.markdown, punctuation.definition.italic.markdown, punctuation.definition.raw.markdown | #D32F2F | — |
| markup.list.unnumbered.markdown | #ff5990 | — |
| markup.list.numbered.markdown | #ff5990 | — |
| markup.raw.block.markdown, markup.raw.inline.markdown | #FFF59D | — |
| markup.quote.markdown, punctuation.definition.blockquote.markdown | #6C71C4 | — |
| meta.separator.markdown | #ff5990 | — |
| meta.image.inline.markdown, markup.underline.link.markdown | #8C8C8C | italic |
| string.other.link.title.markdown, string.other.link.description.markdown | #9EE34F | — |
| punctuation.definition.link.markdown | #8C8C8C | — |
| punctuation.definition.metadata.markdown | #8C8C8C | — |
| punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, punctuation.definition.constant.markdown | #8C8C8C | — |
| token.info-token | #6796E6 | — |
| token.warn-token | #CD9731 | — |
| token.error-token | #F44747 | — |
| token.debug-token | #B267E6 | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end | #ff5990 | — |
| string.template meta.template.expression | #FFFFFF | — |
| source.python | #FFFFFF | — |
| variable.language.special.self.python | #72ff4f | — |
| meta.function-call.python | #4ac0ff | italic |
| meta.object-literal.key.js | #4ac0ff | italic |
TypeScript sample highlighted with this variant's colors and tokenColors.
Loading...
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}!`;
}