Aurora Theme - Official
Publisher: tscmdabdurrakibThemes in package: 10
Aurora Theme - Professional developer themes featuring carefully curated color palettes for enhanced productivity and reduced eye strain. Includes 7 dark and 5 light variants.
Aurora Theme - Professional developer themes featuring carefully curated color palettes for enhanced productivity and reduced eye strain. Includes 7 dark and 5 light variants.
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 |
|---|---|---|
| — | #002339 | — |
| meta.paragraph.markdown, string.other.link.description.title.markdown | #110000 | — |
| entity.name.section.markdown, punctuation.definition.heading.markdown | #034c7c | — |
| punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, markup.quote.markdown | #00AC8F | — |
| markup.quote.markdown | #003494 | italic |
| markup.bold.markdown, punctuation.definition.bold.markdown | #4e76b5 | bold |
| markup.italic.markdown, punctuation.definition.italic.markdown | #C792EA | italic |
| markup.inline.raw.string.markdown, markup.fenced_code.block.markdown | #0460b1 | italic |
| punctuation.definition.metadata.markdown | #00AC8F | — |
| markup.underline.link.image.markdown, markup.underline.link.markdown | #924205 | — |
| comment | #357b42 | italic |
| punctuation.definition.string | #d86db6 | — |
| string | #a44185 | — |
| string.quoted, variable.other.readwrite.js | #a44185 | |
| constant.numeric | #174781 | — |
| constant.language.boolean | #174781 | — |
| constant | #174781 | — |
| constant.language, punctuation.definition.constant, variable.other.constant | #2970c7 | — |
| constant.character, constant.other | #2970c7 | — |
| variable | #2f86d2 | italic |
| variable.other.object.js | #828282 | italic |
| variable.other.readwrite.alias.ts, variable.other.readwrite.alias.tsx, variable.other.readwrite.ts, variable.other.readwrite.tsx, variable.other.object.ts, variable.other.object.tsx, variable.object.property.ts, variable.object.property.tsx, variable.other.ts, variable.other.tsx, variable.tsx, variable.ts | #828282 | — |
| meta.class entity.name.type.class.tsx | #7c2cbd | — |
| entity.name.type.tsx, entity.name.type.module.tsx | #7c2cbd | — |
| meta.method.declaration storage.type.ts, meta.method.declaration storage.type.tsx | #4a668f | — |
| variable.other.object.property | #fa841d | italic |
| variable.instance, variable.other.instance, variable.readwrite.instance, variable.other.readwrite.instance, variable.other.property | #7fdbca | — |
| variable.other.readwrite.js, variable.parameter | #828282 | — |
| string.template meta.template.expression | #c63ed3 | — |
| string.template punctuation.definition.string | #3e3e3e | — |
| storage | #da5221 | |
| keyword, storage.type, storage.modifier, variable.language.this | #0991b6 | italic |
| keyword.operator | #7b30d0 | italic |
| storage, meta.var.expr, meta.class meta.method.declaration meta.var.expr storage.type.js, storage.type.property.js, storage.type.property.ts | #c792ea | italic |
| variable.other.meta.import.js, meta.import.js variable.other, variable.other.meta.export.js, meta.export.js variable.other | #296d31 | — |
| entity.name.class | #1172c7 | — |
| entity.other.inherited-class | #b02767 | |
| variable.other.readwrites, meta.definition.variable | #da5221 | |
| support.variable.property | #358a7b | — |
| entity.name.function | #b1108e | italic |
| variable.parameter | #b1108e | |
| entity.name.tag | #0444ac | |
| entity.name.type | #0444ac | — |
| entity.other.attribute-name | #df8618 | italic |
| punctuation.decorator | #df8618 | italic |
| punctuation.definition.block, punctuation.definition.tag | #3e3e3e | — |
| support.function | #08134A | |
| support.constant | #174781 | |
| support.type, support.class | #dc3eb7 | — |
| support.other.variable | #224555 | — |
| invalid | #207bb8 | italic bold underline |
| invalid.deprecated | #207bb8 | bold italic underline |
| support.type.property-name.json | #3a9685 | — |
| support.constant.json | #497803 | — |
| meta.structure.dictionary.value.json string.quoted.double | #8123a9 | — |
| string.quoted.double.json punctuation.definition.string.json | #2b8c82 | — |
| meta.structure.dictionary.json meta.structure.dictionary.value constant.language | #ae408b | — |
| source.json support | #6dbdfa | — |
| source.json string, source.json punctuation.definition.string | #00820f | — |
| markup.list | #207bb8 | — |
| markup.heading punctuation.definition.heading, entity.name.section | #4FB4D8 | |
| text.html.markdown meta.paragraph meta.link.inline, text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.begin.markdown, text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.end.markdown | #87429A | — |
| meta.paragraph.markdown | #3e3e3e | — |
| markup.quote | #87429A | italic |
| meta.link | #87429A | — |
| source.dockerfile | #005fa4 | — |
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}!`;
}