archangel
Publisher: AllamThemes in package: 2
A slight variant of the blackbird theme inspired by the SR-71's older brother, the A-12
A slight variant of the blackbird theme inspired by the SR-71's older brother, the A-12
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 |
|---|---|---|
| keyword, meta.selector.css, keyword.control.at-rule.media.css, storage.modifier, keyword.control.export, variable.language.this | #e92741 | italic |
| entity.other.attribute-name, support.type.property-name.css, support.class.latex, keyword.key, constant.other.caps, punctuation.section.function, punctuation.separator.list.comma, keyword.operator.namespace.rust, punctuation.brackets, punctuation.comma, fenced_code.block.language, punctuation.definition.attribute.rust, keyword.operator.accessor.js, meta.text.normal.tex | #ffffff | |
| entity.name.tag, markup.heading, support.type.property-name, entity.other.attribute-name.table.toml | #e92741 | bold |
| keyword.operator.assignment.equal, punctuation.definition.keyValuePair.toml, keyword.other.special-method, constant.other.math.tex, support.class, constant.character.math.tex, punctuation.definition.table.toml, entity.other.attribute-name.table.array.toml, keyword.operator.assignment, punctuation.separator.key-value.html | #e92741 | |
| string, punctuation.definition.string | #e0d561 | |
| keyword.operator, constant.numeric, support.class.math, constant.character.math, entity.other.keyframe-offset.percentage.css, punctuation.math.begin.bracket.curly, punctuation.math.end.bracket.curly, punctuation.math.operator.latex, constant.numeric.css, keyword.other.unit, keyword.operator.access.dot, keyword.operator.key-value, support.class.component, punctuation.other.period, punctuation.definition.list.begin.markdown, punctuation.math.begin.bracket.round, punctuation.math.end.bracket.round, punctuation.accessor | #418EDD | |
| support.class.math, constant.character.math | #418EDD | italic |
| entity.name.function, support.function, meta.function-call.generic, entity.other.attribute-name.pseudo-element.css, constant.other.general.math.tex, entity.other.attribute-name.class, meta.attribute.rust, keyword.control.label.latex, constant.character.math.tex, constant.other.math.tex | #3EC841 | |
| meta.template.expression, entity.quasi.element, meta.return-type, support.type.primitive, entity.name.type, variable.argument.css, meta.fstring.python, constant.character.format.placeholder.other.python, support.class | #ff9900 | |
| comment, punctuation.definition.tag, punctuation.definition.markdown | #777777 | |
| storage, entity.other.attribute-name.json, constant, keyword.control.default, variable.parameter.function.latex, entity.other.attribute-name.pseudo-element.css, meta.separator, support.constant.property-value.css, markup.italic.markdown, support.type.object.module, support.type.primitive | #00ecd8 | italic |
| constant.character.escape, constant.other.placeholder | #00ecd8 | |
| markup.bold.markdown | #00ecd8 | 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}!`;
}