Ultimate Dark Neo
Publisher: rubjoThemes in package: 1
Beautiful bluish dark theme with italics.
Beautiful bluish dark theme with italics.
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, punctuation.definition.comment | #A7ADBA | — |
| string | #99c794 | — |
| punctuation.definition | #5fb3b3 | — |
| constant.numeric | #f9ae58 | — |
| constant.language | #ec5f67 | italic |
| constant.character, constant.other | #c594c5 | — |
| variable.member | #ec5f67 | — |
| keyword - keyword.operator, keyword.operator.word, keyword.control | #c594c5 | italic |
| string.template.js meta.template.expression.js meta.embedded.line.js | #d8dee9 | — |
| keyword.operator | #f97b58 | — |
| keyword.operator.new, keyword.operator.expression, keyword.operator.cast, keyword.operator.sizeof, keyword.operator.logical.python | — | italic |
| punctuation.separator, punctuation.terminator | #A7ADBA | — |
| punctuation.section | #ffffff | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end, punctuation.section.embedded | — | italic |
| punctuation.accessor | #A7ADBA | — |
| punctuation.definition.annotation | #5fb3b3 | — |
| variable.other.dollar.only.js, variable.other.object.dollar.only.js, variable.type.dollar.only.js, support.class.dollar.only.js | #5fb3b3 | — |
| variable.language | #ff5874 | italic |
| storage | #ec5f67 | — |
| storage.type | #c594c5 | italic |
| storage.type.function.arrow | — | |
| storage.modifier | — | italic |
| entity.name.function | #5fb3b3 | — |
| meta.object-literal.key.js | #6699cc | — |
| entity.name - (entity.name.section | entity.name.tag | entity.name.label) | #f9ae58 | — |
| entity.other.inherited-class | #5fb3b3 | italic underline |
| variable.parameter | #f9ae58 | |
| variable.language | #ec5f67 | italic |
| entity.name.tag | #ec5f67 | |
| entity.other.attribute-name | #c594c5 | italic |
| entity.other.attribute-name.id.css | — | |
| entity.other.attribute-name.class.css | — | |
| variable.function, variable.annotation | #6699cc | |
| support.function, support.macro | #6699cc | — |
| support.constant | #c594c5 | italic |
| support.class | #6699cc | italic |
| invalid | #f8f8f8 | — |
| invalid.deprecated | #f8f8f8 | — |
| entity.name.tag.yaml | #5fb3b3 | — |
| source.yaml string.unquoted | #D8DEE9 | — |
| markup.heading | — | bold |
| markup.heading punctuation.definition.heading | #f97b58 | — |
| markup.heading.1 punctuation.definition.heading | #ec5f67 | — |
| string.other.link, markup.underline.link | #6699cc | — |
| markup.underline | — | underline |
| markup.bold | — | bold |
| markup.italic | — | italic |
| markup.italic markup.bold | markup.bold markup.italic | — | bold italic |
| punctuation.definition.thematic-break | #f9ae58 | — |
| markup.list.numbered.bullet | #99c794 | — |
| markup.quote punctuation.definition.blockquote, markup.list punctuation.definition.list_item | #f9ae58 | — |
| (text punctuation.definition.italic | text punctuation.definition.bold) | #c594c5 | — |
| meta.decorator punctuation.decorator | — | italic |
| punctuation.definition.comment, comment | #8f97a8 | italic |
| meta.diff, meta.diff.header | #c594c5 | — |
| markup.deleted | #ec5f67 | — |
| markup.inserted | #99c794 | — |
| markup.changed | #f9ae58 | — |
| support.type.property-name | #D8DEE9 | — |
| constant.numeric.line-number.match | #ec5f67 | — |
| message.error | #ec5f67 | — |
| token.info-token | #6796e6 | — |
| token.warn-token | #cd9731 | — |
| token.error-token | #f44747 | — |
| token.debug-token | #b267e6 | — |
| emphasis | — | italic |
| strong | — | bold |
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}!`;
}