Azurish
Publisher: AarilightThemes in package: 2
Kind of Azure, but more -ish.
Kind of Azure, but more -ish.
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 |
|---|---|---|
| token | #3d4a5c | — |
| meta.property-list | #3d4a5c | — |
| comment | #8898b0 | — |
| punctuation.definition.comment | #8898b0 | — |
| string | #0fb1fc | — |
| meta.attribute-selector | #0fb1fc | — |
| punctuation.definition.string | #54c8ff | — |
| string.regexp punctuation.definition.string | #7080a0 | — |
| constant.numeric | #03a572 | — |
| keyword.operator.quantifier | #03a572 | — |
| keyword.other.unit | #1a6050 | — |
| punctuation | #8fa1bf | — |
| meta.brace.round | #8fa1bf | — |
| meta.brace.square | #8fa1bf | — |
| keyword.operator.type.annotation | #8fa1bf | — |
| keyword.operator.type | #8fa1bf | — |
| keyword.control.as | #8fa1bf | — |
| keyword.operator | #8fa1bf | — |
| meta.at-rule.each.scss, meta.tag.xml, meta.tag.preprocessor.xml | #8fa1bf | — |
| meta.type.tuple punctuation.separator.label | #8fa1bf | — |
| constant.language, support.type.primitive, support.type.builtin | #0060cc | — |
| support.constant.property-value | #0060cc | — |
| constant.character, constant.other | #0060cc | — |
| source variable | #455a66 | — |
| source support.variable | #0a7ab0 | — |
| source variable.other.constant | #06537c | — |
| property | #6f65ce | — |
| support.variable.property | #6f65ce | — |
| support.type.property-name, meta.object-literal.key string, meta.type.tuple entity.name.label | #6f65ce | — |
| punctuation.support.type.property-name, meta.object-literal.key punctuation.definition.string | #5068a8 | — |
| support.type.vendored.property-name | #3060b0 | — |
| variable.parameter | #6f65ce | — |
| variable.other.property | #6f65ce | — |
| variable.object.property | #6f65ce | — |
| variable.other.object.property | #6f65ce | — |
| variable.other.jsdoc | #6f65ce | — |
| meta.object-literal.key | #6f65ce | — |
| variable.other.enummember | #6f65ce | — |
| entity.other.attribute-name | #6f65ce | — |
| entity.other.attribute-name.class | #3050d0 | — |
| entity.other.attribute-name.class punctuation | #3050d0 | — |
| entity.other.attribute-name.id, entity.other.attribute-name.id punctuation | #2060cc | — |
| entity.name.label | #2060cc | — |
| punctuation.separator.label | #1a50a0 | — |
| keyword.control, keyword.control punctuation, keyword.other | #0091aa | — |
| keyword.other.important | #0091aa | — |
| storage | #8599ad | |
| variable.language.this | #06537c | — |
| variable.language.super | #06537c | — |
| storage.type | #8599ad | |
| keyword.operator.new | #8599ad | — |
| entity.name.tag.reference | #8599ad | — |
| entity.name.class | #1a7860 | — |
| entity.name.type | #1a7860 | — |
| entity.other.inherited-class | #1a7860 | — |
| support.class.builtin | #1a7860 | — |
| support.class | #1a8868 | — |
| source.css | #8fa1bf | — |
| entity.name.tag | #1a7860 | — |
| entity.name.type.module | #1a6050 | — |
| entity.name.scope-resolution | #1a6050 | — |
| entity.other.attribute-name.pseudo-element, entity.other.attribute-name.pseudo-element punctuation | #1a6050 | — |
| entity.name.function | #0074a3 | — |
| meta.decorator variable, storage.type.annotation | #0074a3 | — |
| punctuation.decorator, punctuation.definition.annotation | #0074a3 | — |
| storage.type.class.jsdoc | #0074a3 | — |
| punctuation.definition.block.tag.jsdoc | #0074a3 | — |
| keyword.command | #0074a3 | — |
| support.function | #0e7080 | |
| keyword.operator.expression | #0e7080 | |
| entity.other.attribute-name.pseudo-class, entity.other.attribute-name.pseudo-class punctuation | #0074a3 | — |
| meta.at-rule.keyframes entity.other.attribute-name | #0074a3 | — |
| support.constant | #8599ad | |
| invalid | #f8f8f0 | |
| invalid.deprecated | #f8f8f0 | — |
| source.diff | #8898a8 | — |
| markup.inserted | #0a9a50 | — |
| markup.deleted | #c83060 | — |
| meta.diff.range, punctuation.definition.range.diff | #c4aa00 | — |
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}!`;
}