August Themes
Publisher: inci-augustThemes in package: 30
‧ ˙ᕀ ✧ᱸ༝ ‧ Dark Visual Studio Code themes made even darker and perfect ‧ ˙ᕀ ✧ᱸ༝ ‧
‧ ˙ᕀ ✧ᱸ༝ ‧ Dark Visual Studio Code themes made even darker and perfect ‧ ˙ᕀ ✧ᱸ༝ ‧
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 |
|---|---|---|
| comment | #55695599 | italic |
| constant | #a62828 | — |
| entity | #70807b | — |
| invalid | #a62828 | italic bold underline |
| keyword | #a2a797 | — |
| markup | #70807b | — |
| markup.inserted | #8bdbc2 | — |
| markup.deleted | #a62828 | — |
| storage | #a62828 | — |
| variable.language.this | #a62828 | italic |
| string | #8bdbc2 | — |
| support | #3f5f4f | — |
| support.function.console | #a62828 | — |
| variable | #70807b | — |
| variable.parameter | #70807b | italic |
| comment.block.documentation | #8bdbc2 | — |
| comment.block.documentation storage | #9258d8 | — |
| comment.block.documentation entity | #287467 | — |
| variable.other | #516b6b | — |
| variable.other.readwrite | #70807b | — |
| text.html.markdown markup.quote | #425262 | italic |
| punctuation.definition.string.template, punctuation.definition.template-expression | #a62828 | — |
| punctuation.accessor | #A2A797 | — |
| punctuation.definition.quote.begin.markdown | #a62828 | — |
| punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, punctuation.definition.metadata.markdown | #425262 | — |
| punctuation.definition.inserted | #8bdbc2 | — |
| punctuation.definition.deleted | #a62828 | — |
| comment.block.html | #425262 | — |
| entity.name.section.markdown | #a62828 | bold |
| punctuation.definition.heading.markdown | #8bdbc2 | bold |
| markup.inline.raw.string.markdown | #9258d8 | — |
| punctuation.definition.raw.markdown | #9258d8 | — |
| fenced_code.block.language.markdown | #a62818 | — |
| punctuation.definition | #a62818 | — |
| punctuation.section.embedded | #a62818 | — |
| meta.separator.markdown | #9258d8 | — |
| meta.brace.round | #a62818 | — |
| meta.link.inline.markdown | #8bdbc2 | — |
| markup.underline.link | #8bdbc288 | italic |
| meta.link.inline.markdown punctuation.definition.string | #287467 | — |
| constant.other.reference.link | #8bdbc2 | — |
| meta.link.reference.def markup.underline.link | #516b6b | italic |
| meta.link.reference.def punctuation.definition.constant | #516b6b | — |
| meta.paragraph.markdown | #516b6b | — |
| punctuation.definition.list.begin | #516b6b | — |
| markup.inline.raw.string.markdown | #8bdbc2 | — |
| punctuation.definition.raw.markdown | #a62828 | — |
| markup.bold.markdown | #516b6b | bold |
| markup.italic.markdown | #516b6b | italic |
| markup.italic.markdown punctuation.definition | #516b6b | italic |
| support.type | #516b6b | italic |
| support.class.component | #70807b | — |
| source.json string | #8bdbc2 | — |
| source.json punctuation.separator, source.json punctuation.definition.dictionary, source.json punctuation.definition.array | #516b6b | — |
| entity.name.tag.yaml | #676c54 | — |
| source.yaml string | #8bdbc2 | — |
| source.yaml punctuation.separator, source.yaml punctuation.definition.sequence | #287467 | — |
| token.info-token | #70807b | — |
| token.warn-token | #b19600 | — |
| token.error-token | #a62828 | — |
| token.debug-token | #9258d8 | — |
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}!`;
}