sketchbook_color_theme
Publisher: TaeKyung KwakThemes in package: 1
Bring back the joy of a child’s sketchbook with this lighthearted pastel VSCode theme. Simple colors, bold contrasts, and a touch of nostalgia.
Bring back the joy of a child’s sketchbook with this lighthearted pastel VSCode theme. Simple colors, bold contrasts, and a touch of nostalgia.
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 | #a6adc8 | italic |
| comment, text.html,, meta.paragraph.markdown | #460057 | italic |
| comment.block.preprocessor | #a6adc8 | — |
| comment.documentation, comment.block.documentation | #448C27 | — |
| invalid.illegal | #660000 | — |
| keyword.operator | #777777 | — |
| keyword, storage | #d7597d | — |
| storage.type, support.type | #ef7f00 | italic |
| constant.language, support.constant, variable.language | #1865b1 | — |
| variable, support.variable | #00923f | — |
| entity.name.function, support.function | #ee41da | underline |
| entity.name.type, entity.other.inherited-class, support.class | #f76700 | italic |
| meta.member.access.python | #8c00f1 | — |
| meta.function-call.generic.python | #209600 | — |
| entity.name.exception | #660000 | — |
| constant.numeric, constant.character, constant | #326cff | — |
| string | #00b2c6 | — |
| constant.character.escape | #777777 | — |
| string.regexp | #4B83CD | — |
| constant.other.symbol | #AB6526 | — |
| punctuation | #777777 | — |
| meta.tag, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html | #f08000 | — |
| entity.name.tag | #079500 | — |
| meta.tag entity.other.attribute-name, entity.other.attribute-name.html | #0087c5 | italic |
| meta.selector, meta.selector entity, entity.name.tag.css | #7A3E9D | — |
| meta.property-name, support.type.property-name | #AB6526 | — |
| meta.property-value, support.constant.property-value | #448C27 | — |
| keyword.other.important | — | bold |
| markup.italic | — | italic |
| markup.heading | #AA3731 | — |
| markup.bold | — | bold |
| markup.quote | #7A3E9D | — |
| markup.list | #4B83CD | — |
| markup.inline.raw | #AB6526 | — |
| meta.diff.range, meta.diff.index | #434343 | — |
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}!`;
}