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 | #98A6BF | — |
| meta.property-list | #98A6BF | — |
| comment | #47556e | — |
| punctuation.definition.comment | #47556e | — |
| string | #0fb1fc | — |
| meta.attribute-selector | #0fb1fc | — |
| punctuation.definition.string | #047db5 | — |
| string.regexp punctuation.definition.string | #495c80 | — |
| constant.numeric | #67bfa5 | — |
| keyword.operator.quantifier | #67bfa5 | — |
| keyword.other.unit | #2f7a64 | — |
| punctuation | #495c80 | — |
| meta.brace.round | #495c80 | — |
| meta.brace.square | #495c80 | — |
| keyword.operator.type.annotation | #495c80 | — |
| keyword.operator.type | #495c80 | — |
| keyword.control.as | #495c80 | — |
| keyword.operator | #495c80 | — |
| meta.at-rule.each.scss, meta.tag.xml, meta.tag.preprocessor.xml | #495c80 | — |
| meta.type.tuple punctuation.separator.label | #495c80 | — |
| constant.language, support.type.primitive, support.type.builtin | #0086ff | — |
| support.constant.property-value | #0086ff | — |
| constant.character, constant.other | #0086ff | — |
| source variable | #659fbf | — |
| source support.variable | #64c1f5 | — |
| source variable.other.constant | #549ad6 | — |
| property | #657dbf | — |
| support.variable.property | #657dbf | — |
| support.type.property-name, meta.object-literal.key string, meta.type.tuple entity.name.label | #657dbf | — |
| punctuation.support.type.property-name, meta.object-literal.key punctuation.definition.string | #465e9e | — |
| support.type.vendored.property-name | #537acc | — |
| variable.parameter | #657dbf | — |
| variable.other.property | #657dbf | — |
| variable.object.property | #657dbf | — |
| variable.other.object.property | #657dbf | — |
| variable.other.jsdoc | #657dbf | — |
| meta.object-literal.key | #657dbf | — |
| variable.other.enummember | #657dbf | — |
| entity.other.attribute-name | #657dbf | — |
| entity.other.attribute-name.class | #5c79ff | — |
| entity.other.attribute-name.class punctuation | #5c79ff | — |
| entity.other.attribute-name.id, entity.other.attribute-name.id punctuation | #3d8bff | — |
| entity.name.label | #3d8bff | — |
| punctuation.separator.label | #2a6ac9 | — |
| keyword.control, keyword.control punctuation, keyword.other | #309eb3 | — |
| keyword.other.important | #309eb3 | — |
| storage | #52708b | |
| variable.language.this | #549ad6 | — |
| variable.language.super | #549ad6 | — |
| storage.type | #52708b | |
| keyword.operator.new | #52708b | — |
| entity.name.tag.reference | #52708b | — |
| entity.name.class | #5eb593 | — |
| entity.name.type | #5eb593 | — |
| entity.other.inherited-class | #5eb593 | — |
| support.class.builtin | #5eb593 | — |
| support.class | #67dbae | — |
| source.css | #495c80 | — |
| entity.name.tag | #5eb593 | — |
| entity.name.type.module | #2f8273 | — |
| entity.name.scope-resolution | #2f8273 | — |
| entity.other.attribute-name.pseudo-element, entity.other.attribute-name.pseudo-element punctuation | #2f8273 | — |
| entity.name.function | #207698 | — |
| meta.decorator variable, storage.type.annotation | #207698 | — |
| punctuation.decorator, punctuation.definition.annotation | #207698 | — |
| storage.type.class.jsdoc | #207698 | — |
| punctuation.definition.block.tag.jsdoc | #207698 | — |
| keyword.command | #207698 | — |
| support.function | #1d93ab | |
| keyword.operator.expression | #1d93ab | |
| entity.other.attribute-name.pseudo-class, entity.other.attribute-name.pseudo-class punctuation | #207698 | — |
| meta.at-rule.keyframes entity.other.attribute-name | #207698 | — |
| support.constant | #52708b | |
| invalid | #f8f8f0 | |
| invalid.deprecated | #f8f8f0 | — |
| source.diff | #5a6a80 | — |
| markup.inserted | #1dd976 | — |
| markup.deleted | #d94879 | — |
| meta.diff.range, punctuation.definition.range.diff | #ffdf80 | — |
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}!`;
}