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, punctuation.definition.comment | #42628c | italic |
| punctuation.accessor | #5EC4FF | — |
| constant | #b62d53 | — |
| constant.language.null, constant.language.undefined | #b62d5399 | — |
| entity | #70e1e8 | — |
| invalid | #d95468 | — |
| keyword | #5ec4ff | — |
| storage.type.class.js | #008B94 | — |
| meta | #718CA1 | — |
| meta.brace | #718CA1 | — |
| punctuation | #70e1e8 | — |
| fenced_code.block.language.markdown | #70e1e8 | — |
| punctuation.definition.parameters | #718CA1 | — |
| entity.name.variable.parameter, meta.at-rule.function variable, meta.at-rule.mixin variable, meta.function.arguments, meta.selectionset.graphql meta.arguments.graphql variable.arguments.graphql, variable.parameter | #ebbf83 | — |
| punctuation.definition.template-expression | #68A1F0 | — |
| storage | #008B94 | — |
| storage.type.function.arrow | #008B94 | — |
| string, punctuation.definition.string | #68A1F0 | — |
| string.template, punctuation.definition.string.template | #68A1F0 | — |
| support | #718CA1 | — |
| support.function | #70e1e8 | — |
| support.class.component.js | #5ca1f0 | — |
| meta.jsx.children.js | #b7c5d3ee | — |
| support.variable.property.dom | #b7c5d3 | — |
| variable | #718CA1 | — |
| source.css, source.stylus, source.scss, entity.other.attribute-name.class.css | #68A1F0 | — |
| punctuation.definition.constant.css | #D95468 | — |
| constant.other.color.rgb-value.hex.css | #E27E8Dff | — |
| support.type.property-name.css | #B7C5D3 | — |
| keyword.other.important.scss | #b62d65 | — |
| entity.other.attribute-name.pseudo-element.css | #5EC4FF | — |
| support.function.misc.scss | #B7C5D3 | — |
| entity.other.attribute-name.id.css, punctuation.definition.entity.css | #68A1F0 | — |
| entity.name.tag.css | #68A1F0 | — |
| source.css support, source.stylus support | ##B7C5D3 | — |
| source.css constant, source.css support.constant, source.stylus constant, source.stylus support.constant | #e27e8d | — |
| support.constant.property-value.css | #718CA1 | — |
| keyword.other.unit.px.css, keyword.other.unit.percentage.css, constant.other.color.rgb-value.hex.css, keyword.other.unit.ms.css, keyword.other.unit.s.css, keyword.other.unit.vh.css, keyword.other.unit.vw.css, keyword.other.unit.deg.css | #d95468 | — |
| source.css string, source.css punctuation.definition.string, source.stylus string, source.stylus punctuation.definition.string | #68A1F0 | — |
| source.css variable, source.stylus variable | #ebbf83 | — |
| entity.other | #33CED8 | — |
| text.html.basic | #B7C5D3 | — |
| toc-list.id.html | #68A1F0 | — |
| punctuation.definition.tag.end.html, punctuation.definition.tag.begin.html | #718CA1 | — |
| entity.name.tag.block.any.html, meta.tag.block.any.html, entity.name.tag.inline.any.html, entity.name.tag.structure.any.html, meta.tag.inline.any.html, entity.name.tag.html, entity.name.tag.js, meta.tag.js, meta.jsx.children.tsx, meta.tag.js, meta.jsx.children.tsx, meta.tag.js | #008b94 | — |
| punctuation.definition.string.begin, punctuation.definition.string.end | #68A1F0 | — |
| source.js storage.type.function | #008B94 | — |
| variable.language, entity.name.type.class.js | #d98e48 | — |
| meta.object-literal.key.js, meta.object.member.js | #718ca1 | — |
| entity.other.inherited-class.js, variable.language.this.js, variable.other.readwrite.alias.js, meta.import.js | #b62d53 | — |
| variable.other.constant.js, variable.other.constant.js.jsx | #8BD49C | — |
| support.type.property-name.json | #d98e48 | — |
| variable.parameter.function.language.special.self.python | #fb94ff | — |
| storage.type.function.python | #b62d65 | — |
| meta.function-call.arguments.python | #8bd49c | — |
| meta.function-call.generic.python | #008b94 | — |
| source.json support | #718CA1 | — |
| source.json string, source.json punctuation.definition.string, punctuation.definition.string.end.json, punctuation.definition.string.begin.json | #B7C5D3 | — |
| source.php entity | #9effff | — |
| variable.other.php, punctuation.definition.variable.php, variable.other.php | #ebbf83 | — |
| meta.paragraph.markdown | #b7c5d3ee | — |
| meta.paragraph.markdown | #b7c5d3ee | — |
| markup.bold | #718693 | bold |
| markup.bold markup.italic, markup.italic markup.bold | #718693 | italic bold |
| markup.inserted | #33CED8 | — |
| markup.deleted | #b62d65 | — |
| punctuation.definition.template-expression, punctuation.definition.string.template | #d98e48 | — |
| punctuation.definition.inserted | #33CED8 | — |
| punctuation.definition.deleted | #b62d65 | — |
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}!`;
}