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 | #508695 | italic |
| constant | #FA61B8 | — |
| constant.language.null, constant.language.undefined | #FA61B866 | — |
| entity | #A6E2E0 | — |
| entity.name.function | — | italic |
| invalid | #FF427B | italic bold underline |
| keyword | #D5358F | — |
| markup | #A8C0C2 | — |
| markup.inserted | #6bf8ef | — |
| markup.deleted | #ff427b | — |
| storage | #D5358F | — |
| string | #A9FEF7 | — |
| support | #7CB3B6 | — |
| variable | #C7E3EE | — |
| variable.language.this | #D5358F | — |
| markup.quote.markdown | #48676A | italic |
| punctuation.definition.quote.begin.markdown | #D5358F | — |
| punctuation.definition.inserted | #6bf8ef | — |
| punctuation.definition.deleted | #ff427b | — |
| meta.jsx.children | #f3fbfb | — |
| comment.block.html | #48676A | — |
| entity.name.section.markdown | #D5358F | bold |
| entity.other.attribute-name.js | — | italic |
| punctuation.definition.heading.markdown | #A8FFDB | bold |
| markup.inline.raw.string.markdown | #FF96AA | — |
| punctuation.definition.raw.markdown | #FFDFEE | — |
| markup.fenced_code.block.markdown | #74A39D | — |
| meta.separator.markdown | #999EE1 | — |
| meta.link.inline.markdown | #9CEEEB | — |
| markup.underline.link | #A8FFEFAD | italic |
| meta.link.inline.markdown punctuation.definition.string | #5AF5F0 | — |
| constant.other.reference.link | #9CEEEB | — |
| meta.link.reference.def markup.underline.link | #74A39D | italic |
| meta.link.reference.def punctuation.definition.constant | #75FFFAAD | — |
| punctuation.definition.list.begin | #A8FFDBAD | — |
| markup.inline.raw.string.markdown | #BAF7FC | — |
| punctuation.definition.raw.markdown | #D5358F | — |
| markup.bold.markdown | #74A39D | bold |
| markup.italic.markdown | #ABDADA | italic |
| markup.italic.markdown punctuation.definition | #ABDADA | italic |
| support.type.property-name.json | #7C9C9E | — |
| source.json string | #BAF7FC | — |
| source.json punctuation.definition.dictionary, source.json punctuation.definition.array | #45566B | — |
| source.json punctuation.separator | #3F405F | — |
| entity.name.tag.yaml | #7C9C9E | — |
| source.yaml punctuation.separator | #BAF7FC | — |
| source.yaml string | #45566B | — |
| token.info-token | #6796E6 | — |
| token.warn-token | #CD9731 | — |
| token.error-token | #F44747 | — |
| token.debug-token | #B267E6 | — |
| punctuation | #D5358F | — |
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}!`;
}