Auralis
Publisher: auralis-labsThemes in package: 8
A premium AI-era VS Code theme system for Terraform, cloud infrastructure, React, Rust, and long deep-work sessions.
A premium AI-era VS Code theme system for Terraform, cloud infrastructure, React, Rust, and long deep-work sessions.
Full workbench mockup using this variant's colors and tokenColors.
Workbench UI color keys from the theme JSON colors map.
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| comment, punctuation.definition.comment | #6f7e8d | italic |
| string, string.quoted, string.template | #beaa5e | — |
| string.regexp, constant.other.character-class.regexp | #80cd82 | — |
| constant.numeric, constant.language, constant.character, variable.other.constant | #ff9381 | — |
| keyword, storage, storage.type, storage.modifier | #c57fbf | — |
| keyword.operator, storage.type.function.arrow | #ce84a7 | — |
| entity.name.function, support.function, meta.function-call, variable.function | #41bdd1 | — |
| entity.name.type, entity.name.class, entity.name.struct, support.type, support.class, storage.type.cs | #6fc4ae | — |
| variable, variable.other.readwrite, variable.parameter, meta.definition.variable | #e6d5bb | — |
| variable.other.property, variable.other.object.property, support.variable.property, meta.object-literal.key, meta.property-name | #e6bd77 | — |
| entity.name.tag, punctuation.definition.tag | #f47db9 | — |
| entity.other.attribute-name, meta.attribute | #25d2fc | — |
| punctuation, meta.brace, meta.delimiter | #8a8f9c | — |
| support.type.property-name.json, string.quoted.double.json | #e6bd77 | — |
| support.type.primitive.ts, support.type.primitive.tsx, entity.name.type.interface.ts, entity.name.type.interface.tsx, entity.name.type.alias.ts, entity.name.type.alias.tsx, support.class.component.tsx | #6fc4ae | — |
| entity.name.tag.tsx, entity.name.tag.jsx, support.class.component.tsx, support.class.component.jsx | #f47db9 | — |
| entity.other.attribute-name.tsx, entity.other.attribute-name.jsx, meta.jsx.children | #25d2fc | — |
| entity.name.type.rust, entity.name.function.rust, support.macro.rust, storage.modifier.rust, keyword.unsafe.rust, variable.language.self.rust | #6fc4ae | — |
| entity.name.function.python, support.function.magic.python, support.type.python, variable.parameter.function.language.python, constant.language.python | #41bdd1 | — |
| entity.name.function.go, storage.type.go, keyword.operator.address.go, variable.other.assignment.go | #6fc4ae | — |
| keyword.other.hcl, entity.name.section.hcl, support.type.property-name.terraform | #ebbb6e | — |
| keyword.other.resource.terraform, keyword.other.data.terraform, keyword.other.module.terraform, keyword.other.provider.terraform, keyword.other.hcl, storage.type.terraform, storage.type.hcl | #ff8e60 | bold |
| entity.name.type.terraform, entity.name.type.hcl | #49dfc7 | — |
| entity.name.section.hcl, entity.name.label.terraform, string.quoted.double.block.terraform, string.quoted.double.label.terraform | #e5c95e | — |
| support.type.property-name.terraform, support.type.property-name.hcl, variable.other.property.terraform, variable.other.member.terraform, meta.attribute.terraform | #ebbb6e | — |
| variable.other.readwrite.terraform, variable.other.terraform, variable.other.hcl, support.variable.terraform, variable.other.property.hcl | #1dd3f9 | — |
| support.variable.terraform, variable.language.terraform, variable.language.hcl | #e48ae7 | italic |
| string.quoted.double.terraform, string.quoted.double.hcl, punctuation.definition.string.begin.terraform, punctuation.definition.string.end.terraform | #e1c34b | — |
| constant.numeric.terraform, constant.numeric.hcl, constant.language.terraform, constant.language.hcl | #ff9685 | — |
| constant.language.boolean.terraform, constant.language.boolean.hcl | #f47db9 | bold |
| keyword.operator.terraform, keyword.operator.hcl, punctuation.section.interpolation.terraform, punctuation.definition.template-expression.terraform | #ce84a7 | — |
| markup.underline.link, constant.other.reference.link, string.other.link | #1dd3f9 | underline |
| entity.name.tag.yaml, string.unquoted.yaml, support.type.property-name.yaml | #e6bd77 | — |
| keyword.other.special-method.dockerfile, entity.name.function.dockerfile, variable.other.dockerfile | #c57fbf | — |
| markup.heading, entity.name.section.markdown | #41bdd1 | bold |
| markup.bold, markup.italic, markup.underline.link, string.other.link.title.markdown | #ca933e | — |
| markup.inline.raw, markup.fenced_code | #beaa5e | — |
| invalid, invalid.illegal | #fc5855 | — |
TypeScript sample highlighted with this variant's colors and tokenColors.
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}!`;
}