Aramok's Black
Publisher: aramokThemes in package: 3
For those who are not satisfied with less colors. Let your mind to focus more , return true;
For those who are not satisfied with less colors. Let your mind to focus more , return true;
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 |
|---|---|---|
| markup.underline, markup.heading, markup.italic, markup.strikethrough, markup.inserted, markup.deleted, markup.changed, markup.inline.raw, markup.bold, support.function, support.class, support.type, support.other.parenthesis.regexp, support.variable, support.function.git-rebase, support.type.vendored.property-name, support.type.property-name, source.powershell variable.other.member, punctuation.definition.group.regexp, punctuation.definition.group.assertion.regexp, punctuation.definition.character-class.regexp, punctuation.character.set.begin.regexp, punctuation.character.set.end.regexp, support.constant.handlebars, support.constant.property-value, support.constant.font-name, support.constant.media-type, support.constant.media, support.constant.color, support.constant.math, support.constant.dom, support.constant.json, constant.character.character-class.regexp, constant.other.character-class.set.regexp, constant.other.character-class.regexp, constant.character.set.regexp, constant.character, variable.other.constant, constant.other.color.rgb-value, constant.other.rgb-value, constant.sha.git-rebase, constant.regexp, constant.numeric, constant.language, variable.other.enummember, meta.object-literal.key, variable, meta.definition.variable.name, variable.language.wildcard.java, punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php, variable.css, variable.scss, variable.other.less, source.coffee.embedded, meta.template.expression, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end, punctuation.section.embedded, meta.embedded.assembly, meta.structure.dictionary.key.python, meta.diff.header, punctuation.definition.tag, invalid, punctuation.definition.quote.begin.markdown, punctuation.definition.list.begin.markdown, variable.other.enummember, emphasis, strong, header, meta.embedded, source.groovy.embedded, variable.language, entity.name.variable, entity.name.scope-resolution, entity.other.attribute, entity.other.inherited-class, entity.name.function.preprocessor, meta.preprocessor.numeric, meta.preprocessor, 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, source.css.less entity.other.attribute-name.id, entity.other.attribute-name.scss, entity.name.tag, entity.name.tag.css, entity.other.attribute-name, entity.other.attribute, entity.name.scope-resolution, keyword, keyword.control, entity.name.type, variable.other.property.cli, variable.other.property | #ffffff | — |
| comment, comment.line, comment.block, comment.block.documentation | #598344 | bold |
| keyword.operator.or.regexp, keyword.operator.quantifier.regexp, keyword.control.anchor.regexp, keyword.control, keyword.other.namespace | #aaaaaa | — |
| entity.name.function | #ffffff | bold |
| keyword.operator, keyword.operator.assignment, entity.name.operator | #ffe8c5 | bold |
| keyword.other.using, keyword.other | #ffbaf9 | — |
| storage.type.numeric.go, storage.type.byte.go, storage.type.boolean.go, storage.type.uintptr.go, storage.type.error.go, storage.type.rune.go, storage.type.cs, storage.type.generic.cs, storage.type.modifier.cs, storage.type.variable.cs, storage.type.annotation.java, storage.type.generic.java, storage.type.java, storage.type.object.array.java, storage.type.primitive.array.java, storage.type.primitive.java, storage.type.token.java, storage.type.groovy, storage.type.annotation.groovy, storage.type.parameters.groovy, storage.type.generic.groovy, storage.type.object.array.groovy, storage.type.primitive.array.groovy, storage.type.primitive.groovy, storage.modifier.import.java, storage.modifier.package.java, storage.type, entity.name.class, entity.name.type | #9e9e9e | italic |
| storage.modifier | — | bold |
| variable.other.enummember, entity.name.namespace | #bee0ff | — |
| entity.name.function.member | #fff | bold |
| entity.name.function.preprocessor | #ffea96 | — |
| constant.character.escape | — | underline |
| variable.other.property.static, variable.other.global | — | underline bold |
| keyword.operator.cast, meta.type.cast.expr, keyword.operator.wordlike, keyword.operator.typeid, keyword.operator.alignas, keyword.operator.sizeof, keyword.operator.alignof, keyword.operator.instanceof, keyword.operator.expression, keyword.operations | #f33 | — |
| variable.other.local | #ffffff | — |
| keyword.other.unit | #a5e466 | — |
| invalid, invalid.deprecated, invalid.illegal, keyword.operator.new, keyword.operator.delete, meta.type.new.expr, entity.name.label | #f33 | bold underline |
| storage.type.string.go, constant.other.placeholder, meta.preprocessor.string, string.tag, string.value, string.regexp, string | #aaa | 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}!`;
}