Peachy Themes
Publisher: VoxelwaveStudioThemes in package: 2
A sweet peach-toned VS Code theme with cozy contrast and soft candy syntax colors.
A sweet peach-toned VS Code theme with cozy contrast and soft candy syntax colors.
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 | #729760 | italic |
| string, string.template, punctuation.definition.string, punctuation.definition.template-expression | #ff928b | — |
| constant.numeric, constant.language, constant.character.escape, constant.other.color | #ffac81 | — |
| keyword, storage, storage.type, keyword.control, keyword.operator.expression, keyword.other.unit | #cdeac0 | — |
| keyword.operator, punctuation.separator, punctuation.terminator | #f3b4bf | — |
| entity.name.function, support.function, meta.function-call, variable.function | #efe9ae | — |
| entity.name.type, entity.name.class, support.type, support.class, entity.other.inherited-class | #fec3d6 | — |
| variable, identifier, entity.name.variable | #fff8f8 | — |
| variable.parameter, variable.parameter.function, entity.name.label | #f3b4bf | italic |
| variable.other.property, meta.object-literal.key, support.variable.property | #fec3d6 | — |
| entity.name.tag, meta.tag.sgml, markup.deleted.git_gutter | #fe7c8e | — |
| entity.other.attribute-name, meta.attribute-with-value | #ffac81 | — |
| markup.heading, markup.heading.setext | #efe9ae | bold |
| markup.bold, markup.italic, markup.quote | #fec3d6 | — |
| markup.inline.raw, markup.underline.link, string.other.link.title.markdown | #ffac81 | — |
| markup.inserted, markup.inserted.diff | #3bc089 | — |
| markup.changed, markup.changed.diff | #d0963a | — |
| markup.deleted, markup.deleted.diff | #ff62a5 | — |
| source.json meta.structure.dictionary.json support.type.property-name.json, source.json meta.structure.dictionary.json string.quoted.double.json | #fec3d6 | — |
| source.json punctuation.separator.key-value, source.json punctuation.separator.array, source.json punctuation.definition.string | #f3b4bf | — |
| source.yaml entity.name.tag.yaml, source.yaml support.type.property-name.yaml | #fec3d6 | — |
| entity.other.attribute-name.class.css, entity.other.attribute-name.id.css, entity.name.tag.css | #efe9ae | — |
| support.type.property-name.css, meta.property-name.css | #fec3d6 | — |
| constant.character.entity, punctuation.definition.entity | #ffac81 | — |
| meta.decorator, entity.name.function.decorator, storage.modifier | #ffac81 | — |
| template.expression punctuation.definition.template-expression.begin, template.expression punctuation.definition.template-expression.end | #fec3d6 | — |
| support.function.builtin.python, variable.language.special.python, storage.type.function.arrow | #efe9ae | — |
| support.function.builtin.shell, meta.function-call.shell, source.shell variable.other.readwrite | #cdeac0 | — |
| storage.modifier.lifetime.rust, support.macro.rust, entity.name.function.macro.rust | #ffac81 | — |
| entity.name.package.go, constant.other.go | #fec3d6 | — |
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}!`;
}