Vibrant Abyss
Publisher: Noel HorváthThemes in package: 1
Pitch black theme with vibrant colors tailored for Rust and C#
Pitch black theme with vibrant colors tailored for Rust and C#
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 |
|---|---|---|
| meta.embedded, source.groovy.embedded | #cdcdcd | — |
| emphasis | — | italic |
| strong | — | bold |
| comment | #94d378 | — |
| constant.language, constant.character, support.constant.font-name, support.constant.media-type, support.constant.media, support.constant.color, support.constant.property-value, support.constant.math, support.constant.dom, support.constant.json, punctuation.definition.list.begin.markdown | #5ec7ff | — |
| constant.numeric, keyword.operator.plus.exponent, keyword.operator.minus.exponent, meta.preprocessor.numeric, keyword.other.unit, constant.sha.git-rebase | #aedf8d | — |
| constant.regexp | #ffb74a | — |
| entity.other.attribute, entity.other.attribute-name, comment.documentation.attribute.name.cs, meta.object-literal.key, meta.structure.dictionary.key.python, source.coffee.embedded, support.function.git-rebase, support.type.vendored.property-name, support.type.property-name | #9cdcfe | — |
| entity.name.tag.css, entity.other.attribute-name.class.css, entity.other.attribute-name.class.mixin.css, entity.other.attribute-name.id.css, entity.other.attribute-name.parent-selector.css, entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-element.css, entity.other.attribute-name.scss, constant.other.color.rgb-value, constant.other.rgb-value | #f1d495 | — |
| invalid | #ff6439 | — |
| markup.underline | — | underline |
| markup.bold, markup.heading | #5ec7ff | bold |
| markup.italic | — | italic |
| markup.inserted | #5fd789 | — |
| markup.deleted | #ff8566 | — |
| markup.changed | #ffb74a | — |
| string, string.regex, string.tag, string.value, meta.embedded.assembly, punctuation.definition.quote.begin.markdown, markup.inline.raw, meta.preprocessor.string, constant.other.color.rgb-value, constant.other.rgb-value | #eaab93 | — |
| punctuation.definition.tag | #9c9c9c | — |
| keyword.control, meta.preprocessor, entity.name.function.preprocessor, variable.language | #34a7ff | — |
| entity.name.tag, meta.diff.header, keyword, keyword.operator.new, keyword.operator.expression, keyword.operator.cast, keyword.operator.sizeof, keyword.operator.alignof, keyword.operator.typeid, keyword.operator.alignas, keyword.operator.instanceof, keyword.operator.logical.python, keyword.operator.wordlike, storage, storage.modifier, keyword.operator.noexcept, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end, punctuation.section.embedded, punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php, storage.modifier.import.java, storage.modifier.package.java, variable.language.wildcard.java | #4ec1fb | — |
| keyword.operator, meta.template.expression | #dedede | — |
| entity.name.function, support.function, support.constant.handlebars, source.powershell variable.other.member, entity.name.operator.custom-literal | #e6e6b1 | — |
| entity.name.class, entity.name.namespace, entity.name.scope-resolution, entity.name.type, entity.other.inherited-class, meta.return-type, support.class, support.type, storage.type | #20deb8 | — |
| source.cpp keyword.operator.new, keyword.operator.delete, keyword.other.using, keyword.other.operator, entity.name.operator | #fe77ef | — |
| variable, variable.css, variable.scss, variable.other.less, variable.other.property, variable.language.wildcard.java, meta.definition.variable.name, support.variable, constant.other.placeholder, entity.name.variable, entity.name.variable.parameter | #abe2ff | — |
| constant.other.caps.rust, variable.other.constant | #0df8fc | — |
| variable.other.enummember, entity.name.label | #16dcff | — |
| punctuation.definition.group.regexp, punctuation.definition.group.assertion.regexp, punctuation.definition.character-class.regexp, punctuation.character.set.begin.regexp, punctuation.character.set.end.regexp, keyword.operator.negation.regexp, support.other.parenthesis.regexp | #daa18a | — |
| constant.character.character-class.regexp, constant.other.character-class.set.regexp, constant.other.character-class.regexp, constant.character.set.regexp | #ff8566 | — |
| keyword.operator.or.regexp, keyword.control.anchor.regexp, keyword.operator.quantifier.regexp | #e6e6b1 | — |
| constant.character, constant.character.escape | #f1d495 | — |
| comment.documentation.attribute.quotes.cs, comment.documentation.delimiter.cs, comment.block.documentation.cs | #cdcdcd | — |
| comment.documentation.name.cs | #66baff | — |
| token.info-token | #34a7ff | — |
| token.warn-token | #e7d427 | — |
| token.error-token | #ff6439 | — |
| token.debug-token | #fe77ef | — |
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}!`;
}