Null Theme
Publisher: kimberlycasaminaThemes in package: 8
Cyberpunk-inspired theme with bright neon colors, clear contrast, and frameless minimal chrome. Features absolute black and near-black variants.
Cyberpunk-inspired theme with bright neon colors, clear contrast, and frameless minimal chrome. Features absolute black and near-black variants.
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 | #A6A6A6 | italic |
| string, string.quoted, string.template | #32FF7E | — |
| constant.numeric, constant.language | #FFD700 | — |
| keyword, keyword.control, keyword.other | #FF1493 | bold |
| entity.name.function, support.function, meta.function-call | #1E90FF | bold |
| entity.name.class, entity.name.type, support.class | #ADFF2F | bold |
| variable, variable.other | #87CEFA | — |
| variable.parameter, parameter | #FF6347 | italic |
| variable.other.property, support.type.property-name | #98FB98 | — |
| constant, constant.other | #FFA500 | bold |
| keyword.operator, punctuation | #FF4500 | — |
| entity.name.type, support.type, storage.type | #9370DB | bold |
| keyword.control.import, keyword.control.export, keyword.control.from | #FF69B4 | bold |
| entity.name.tag, punctuation.definition.tag | #FF4500 | bold |
| entity.other.attribute-name | #4682B4 | — |
| entity.name.tag.css, entity.other.attribute-name.class.css | #FF6347 | bold |
| support.type.property-name.css | #32CD32 | — |
| support.constant.property-value.css | #87CEEB | — |
| support.type.property-name.json | #FFA07A | — |
| support.class.component | #20B2AA | bold |
| string.regexp | #DC143C | — |
| string.template, punctuation.definition.template-expression | #40E0D0 | — |
| entity.name.function.decorator, punctuation.decorator | #DAA520 | italic |
| markup.heading | #5F9EA0 | bold |
| markup.underline.link | #7FFFD4 | — |
| markup.inline.raw, markup.fenced_code | #8A2BE2 | — |
| invalid, invalid.illegal | #FF0000 | bold underline |
| invalid.deprecated | #FF8C00 | strikethrough |
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}!`;
}