Academic Paper
Publisher: caimeoThemes in package: 1
Paper Theme for VSCode - Writing code just like on paper.
Paper Theme for VSCode - Writing code just like on paper.
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 | #000000 | italic |
| comment.block.preprocessor | #AAAAAA | |
| comment.documentation, comment.block.documentation | #000000 | italic |
| invalid.illegal | #000000 | — |
| keyword.operator | #777777 | — |
| keyword, storage | #000000 | bold |
| storage.type, support.type | #000000 | italic bold |
| constant.language, support.constant, variable.language | #000000 | italic |
| variable, support.variable | #000000 | — |
| entity.name.function, support.function | #000000 | underline |
| entity.name.type, entity.other.inherited-class, support.class | #000000 | bold |
| entity.name.exception | #000000 | italic bold |
| entity.name.section | — | bold |
| constant.numeric, constant.character, constant | #000000 | italic |
| string | #000000 | italic |
| constant.character.escape | #777777 | — |
| string.regexp | #000000 | italic underline |
| constant.other.symbol | #000000 | italic |
| punctuation | #777777 | — |
| meta.tag.sgml.doctype, meta.tag.sgml.doctype string, meta.tag.sgml.doctype entity.name.tag, meta.tag.sgml punctuation.definition.tag.html | #AAAAAA | — |
| meta.tag, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html | #000000 | — |
| entity.name.tag | #000000 | bold |
| meta.tag entity.other.attribute-name, entity.other.attribute-name.html | #000000 | — |
| constant.character.entity, punctuation.definition.entity | #000000 | — |
| meta.selector, meta.selector entity, meta.selector entity punctuation, entity.name.tag.css | #000000 | — |
| meta.property-name, support.type.property-name | #000000 | — |
| meta.property-value, meta.property-value constant.other, support.constant.property-value | #000000 | — |
| keyword.other.important | — | bold |
| markup.changed | #000000 | — |
| markup.deleted | #000000 | — |
| markup.italic | — | italic |
| markup.error | #000000 | bold underline |
| markup.inserted | #000000 | — |
| meta.link | #000000 | italic |
| markup.output, markup.raw | #777777 | — |
| markup.prompt | #777777 | — |
| markup.heading | #000000 | — |
| markup.bold | — | bold |
| markup.traceback | #000000 | — |
| markup.underline | — | underline |
| markup.quote | #000000 | — |
| markup.list | #000000 | — |
| markup.bold, markup.italic | #000000 | — |
| markup.inline.raw | #4d4d4d | |
| meta.diff.range, meta.diff.index, meta.separator | #434343 | — |
| meta.diff.header.from-file | #434343 | — |
| meta.diff.header.to-file | #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}!`;
}