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 | #736046 | italic |
| string, string.quoted, string.template | #1e7729 | — |
| string.regexp, constant.other.character-class.regexp | #1e7729 | — |
| constant.numeric, constant.language, constant.character, variable.other.constant | #b25400 | — |
| keyword, storage, storage.type, storage.modifier | #ad215f | — |
| keyword.operator, storage.type.function.arrow | #a43c2f | — |
| entity.name.function, support.function, meta.function-call, variable.function | #044cb6 | — |
| entity.name.type, entity.name.class, entity.name.struct, support.type, support.class, storage.type.cs | #007982 | — |
| variable, variable.other.readwrite, variable.parameter, meta.definition.variable | #3a312a | — |
| variable.other.property, variable.other.object.property, support.variable.property, meta.object-literal.key, meta.property-name | #6d3800 | — |
| entity.name.tag, punctuation.definition.tag | #ad215f | — |
| entity.other.attribute-name, meta.attribute | #044cb6 | — |
| punctuation, meta.brace, meta.delimiter | #564b42 | — |
| support.type.property-name.json, string.quoted.double.json | #6d3800 | — |
| 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 | #007982 | — |
| entity.name.tag.tsx, entity.name.tag.jsx, support.class.component.tsx, support.class.component.jsx | #ad215f | — |
| entity.other.attribute-name.tsx, entity.other.attribute-name.jsx, meta.jsx.children | #044cb6 | — |
| entity.name.type.rust, entity.name.function.rust, support.macro.rust, storage.modifier.rust, keyword.unsafe.rust, variable.language.self.rust | #007982 | — |
| entity.name.function.python, support.function.magic.python, support.type.python, variable.parameter.function.language.python, constant.language.python | #044cb6 | — |
| entity.name.function.go, storage.type.go, keyword.operator.address.go, variable.other.assignment.go | #007982 | — |
| keyword.other.hcl, entity.name.section.hcl, support.type.property-name.terraform | #6c3a00 | — |
| 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 | #a9231e | bold |
| entity.name.type.terraform, entity.name.type.hcl | #006577 | — |
| entity.name.section.hcl, entity.name.label.terraform, string.quoted.double.block.terraform, string.quoted.double.label.terraform | #0f641d | — |
| support.type.property-name.terraform, support.type.property-name.hcl, variable.other.property.terraform, variable.other.member.terraform, meta.attribute.terraform | #6c3a00 | — |
| variable.other.readwrite.terraform, variable.other.terraform, variable.other.hcl, support.variable.terraform, variable.other.property.hcl | #12479d | — |
| support.variable.terraform, variable.language.terraform, variable.language.hcl | #6c44a4 | italic |
| string.quoted.double.terraform, string.quoted.double.hcl, punctuation.definition.string.begin.terraform, punctuation.definition.string.end.terraform | #186a23 | — |
| constant.numeric.terraform, constant.numeric.hcl, constant.language.terraform, constant.language.hcl | #9e4700 | — |
| constant.language.boolean.terraform, constant.language.boolean.hcl | #a3215a | bold |
| keyword.operator.terraform, keyword.operator.hcl, punctuation.section.interpolation.terraform, punctuation.definition.template-expression.terraform | #a43c2f | — |
| markup.underline.link, constant.other.reference.link, string.other.link | #005187 | underline |
| entity.name.tag.yaml, string.unquoted.yaml, support.type.property-name.yaml | #6d3800 | — |
| keyword.other.special-method.dockerfile, entity.name.function.dockerfile, variable.other.dockerfile | #ad215f | — |
| markup.heading, entity.name.section.markdown | #044cb6 | bold |
| markup.bold, markup.italic, markup.underline.link, string.other.link.title.markdown | #d45b3d | — |
| markup.inline.raw, markup.fenced_code | #1e7729 | — |
| invalid, invalid.illegal | #cc272e | — |
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}!`;
}