Aira Theme
Publisher: Talison CardosoThemes in package: 2
Official Aira Theme 🇧🇷
Official Aira Theme 🇧🇷
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 |
|---|---|---|
| invalid | #EF4E5B | — |
| invalid.deprecated | #EF4E5B | — |
| source | #E5E5E5 | — |
| variable | #E5E5E5 | — |
| constant | #B69EFF | — |
| comment | #787A88 | — |
| string | #D8C451 | — |
| keyword | #50E191 | — |
| keyword.operator.new, keyword.control.new | #50E191 | — |
| entity.name.type.class | #FF916E | |
| entity.other.inherited-class | #FF916E | italic |
| variable.language | #B69EFF | italic |
| entity.name.function | #63ACFF | — |
| variable.parameter | — | — |
| storage.type.annotation | #63ACFF | italic |
| support | #FF916E | — |
| support.variable | #B69EFF | — |
| support.function | #FF916E | — |
| support.type | #FF916E | — |
| support.constant | #B69EFF | — |
| punctuation.separator.key-value | #909CC3 | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end | #50E191 | — |
| punctuation.separator.inheritance | #50E191 | — |
| storage | #50E191 | — |
| entity.name.type | #FF916E | italic |
| comment.block.documentation | #787A88 | — |
| comment.block.documentation variable | — | italic |
| entity.name.type.instance | #FF916E | italic |
| comment.block.documentation storage.type.class | #50E191 | italic |
| constant.character.escape | #50E191 | — |
| constant.numeric | #B69EFF | — |
| meta.embedded.line | — | — |
| variable.other.constant | #B69EFF | — |
| variable.other.readwrite.alias | #E5E5E5 | — |
| text.html | #E5E5E5 | — |
| entity.name.tag | #50E191 | — |
| entity.other.attribute-name | #63ACFF | — |
| entity.other.attribute-name.class | #63ACFF | — |
| entity.other.attribute-name.css | #63ACFF | italic |
| support.type.property-name.css | #E5E5E5 | |
| support.constant.property-value | #B69EFF | — |
| support.function.calc.css, support.function.misc.css | #63ACFF | |
| keyword.operator.pattern.css | #909CC3 | — |
| support.type.property-name.json | #50E191 | |
| entity.name.section.markdown | #50E191 | — |
| punctuation.definition.heading.markdown | #909CC3 | — |
| punctuation.definition.list.begin.markdown, punctuation.definition.bold.markdown, punctuation.definition.italic.markdown, punctuation.definition.table.markdown, punctuation.separator.table.markdown, punctuation.definition.strikethrough.markdown, punctuation.definition.math.begin.markdown, punctuation.definition.math.end.markdown, punctuation.definition.quote.begin.markdown | #FF916E | — |
| text.html.markdown | #E5E5E5 | — |
| markup.bold.markdown | — | bold |
| markup.italic.markdown | — | italic |
| markup.underline.link | #63ACFF | italic |
| string.other.link | #50E191 | italic |
| markup.strikethrough.markdown | — | strikethrough |
| meta.embedded.math.markdown | #909CC3 | italic |
| string.other.link.description.title.markdown, string.other.link.description.markdown, string.other.link.title.markdown | #909CC3 | italic |
| meta.interpolation.rust | #50E191 | — |
| entity.name.type.rust, entity.name.type.enum.rust, entity.name.type.struct.rust | #FF916E | — |
| variable.parameter.function.language.special.self.python | #FF916E | — |
| support.class.1, support.other.namespace.php | #FF916E | italic |
| variable.other.property.php | #E5E5E5 | — |
| punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php, punctuation.section.embedded.end.php source.php | #50E191 | — |
| entity.name.type.interface.php, entity.name.type.trait.php | #FF916E | — |
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}!`;
}