Cordoba Sunset
Publisher: AgusPeirettiThemes in package: 2
Dark theme inspirado en Córdoba: carbón + peach con acentos sage/salmon/red. Incluye versión High Contrast.
Dark theme inspirado en Córdoba: carbón + peach con acentos sage/salmon/red. Incluye versión High Contrast.
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 | #99B89899 | italic |
| string, constant.other.symbol, constant.other.key | #99B898 | — |
| keyword, storage.type, storage.modifier, keyword.control | #FF847C | bold |
| entity.name.function, support.function, meta.function-call, variable.function | #FECEA8 | bold |
| variable, meta.definition.variable, support.other.variable | #FECEA8CC | — |
| constant.numeric, constant.language, support.constant, constant.character | #FF847C | — |
| entity.name.type, support.type, support.class, storage.type.class | #99B898 | bold |
| entity.name.tag, meta.tag, punctuation.definition.tag | #FF847C | — |
| entity.other.attribute-name | #FECEA8B3 | — |
| punctuation, meta.brace, meta.delimiter | #FECEA899 | — |
| invalid, invalid.illegal | #E84A5F | underline |
| markup.heading, markup.heading.markdown punctuation.definition.heading.markdown | #99B898 | bold |
| string.other.link.title.markdown, markup.underline.link | #FF847C | underline |
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}!`;
}