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 | #888888 | italic |
| string | #7FFFD4 | italic |
| constant.numeric | #FFA500 | bold |
| keyword.control | #FFD700 | bold underline |
| keyword.declaration | #FFAA00 | bold |
| keyword.export, keyword.default | #FF4500 | bold italic |
| entity.name.function, support.function | #00BFFF | bold underline |
| entity.name.class, entity.name.type | #ADFF2F | bold |
| variable | #ADD8E6 | — |
| variable.parameter | #F0E68C | italic |
| variable.other.property | #98FB98 | underline |
| constant | #DDA0DD | bold |
| keyword.operator | #FF6347 | bold |
| entity.name.tag | #FF4500 | bold |
| entity.other.attribute-name | #20B2AA | italic |
| entity.name.tag.css | #FF1493 | bold |
| support.type.property-name.css | #5F9EA0 | italic |
| support.type.property-name.json | #FA8072 | bold |
| markup.heading | #9370DB | bold underline |
| markup.underline.link | #4169E1 | underline |
| markup.inline.raw | #7CFC00 | bold |
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}!`;
}