Hot Dog Stand Plus
Publisher: HOTDOG-STAND-PLUSThemes in package: 1
The infamous Windows 3.1 Hot Dog Stand theme - bright red background with white text. A nostalgic tribute!
The infamous Windows 3.1 Hot Dog Stand theme - bright red background with white text. A nostalgic tribute!
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 |
|---|---|---|
| Global settings | #FFFFFF | — |
| text, source, meta, punctuation, punctuation.definition, punctuation.separator, punctuation.terminator | #FFFFFF | — |
| comment, punctuation.definition.comment | #FFFFFFAA | italic |
| keyword, keyword.control, keyword.operator, storage, storage.type, storage.modifier, variable.language, constant.language | #FFFFFF | bold |
| string, string.quoted, string.template, punctuation.definition.string | #FFFFFF | — |
| constant.numeric, constant.character | #FFFFFF | — |
| entity.name.function, support.function, meta.function-call, entity.name.method | #FFFFFF | — |
| entity.name.class, entity.name.type, support.class, support.type, entity.other.inherited-class | #FFFFFF | bold |
| variable, variable.parameter, variable.other, support.variable, entity.name.variable | #FFFFFF | — |
| property, variable.other.property, support.type.property-name, meta.property-name | #FFFFFF | — |
| entity.name.tag, meta.tag, punctuation.definition.tag | #FFFFFF | — |
| entity.other.attribute-name, meta.attribute | #FFFFFF | italic |
| keyword.operator, operator | #FFFFFF | — |
| constant, constant.other, support.constant | #FFFFFF | — |
| invalid, invalid.illegal | #FFFF00 | underline |
| markup.heading, markup.bold, markup.italic, markup.underline | #FFFFFF | — |
| support.type.property-name.json, punctuation.support.type.property-name.begin.json, punctuation.support.type.property-name.end.json | #FFFFFF | — |
| source.css, source.scss, source.less, meta.selector | #FFFFFF | — |
| source, text | #FFFFFF | — |
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}!`;
}