Aurora Borealis Studio Theme
Publisher: lohsebhipolg2sThemes in package: 2
A mesmerizing VS Code theme inspired by the Northern Lights with ethereal greens, mystical purples, and arctic blues
A mesmerizing VS Code theme inspired by the Northern Lights with ethereal greens, mystical purples, and arctic blues
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 |
|---|---|---|
| emphasis | — | italic |
| strong | — | bold |
| header | #81C784 | — |
| comment, punctuation.definition.comment | #607D8B | italic |
| comment keyword.codetag.notation, comment.block.documentation keyword | #64B5F6 | — |
| string | #81C784 | — |
| punctuation.definition.string.begin, punctuation.definition.string.end | #66BB6A | — |
| constant, variable.other.constant | #BA68C8 | — |
| constant.numeric | #FFB74D | — |
| keyword, storage.type, storage.modifier | #FFAB91 | bold |
| entity.name.function, meta.function-call | #64B5F6 | — |
| variable.parameter | #CE93D8 | italic |
| entity.name.type.class, entity.name.class | #BA68C8 | — |
| entity.name.type, storage.type | #90CAF9 | italic |
| variable | #D1E7F0 | — |
| variable.language | #FFAB91 | italic |
| entity.name.tag | #FFAB91 | — |
| entity.other.attribute-name | #64B5F6 | italic |
| meta.selector | #BA68C8 | — |
| support.type.property-name | #81C784 | — |
| keyword.operator | #4DD0E1 | — |
| punctuation | #80DEEA | — |
| string.regexp | #FFB74D | — |
| markup.heading | #81C784 | bold |
| markup.bold | #D1E7F0 | bold |
| markup.italic | #CE93D8 | italic |
| markup.underline.link | #64B5F6 | — |
| markup.inline.raw | #BA68C8 | — |
| invalid | #E57373 | underline |
| invalid.deprecated | #FFAB91 | strikethrough |
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}!`;
}