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 | #666666 | italic |
| string | #E9967A | — |
| constant.numeric | #FFA07A | — |
| keyword | #DA70D6 | bold |
| keyword.control.export | #FF1493 | bold underline |
| keyword.control.default | #FF8C00 | italic |
| keyword.control.function | #1E90FF | bold underline |
| entity.name.function, support.function | #00CED1 | bold |
| entity.name.class, entity.name.type | #FFD700 | bold |
| variable | #AFEEEE | — |
| variable.parameter | #F08080 | — |
| variable.other.property | #98FB98 | — |
| constant | #FFB6C1 | — |
| keyword.operator | #BA55D3 | — |
| entity.name.tag | #FF4500 | — |
| entity.other.attribute-name | #00CED1 | — |
| entity.name.tag.css | #FF1493 | bold italic |
| support.type.property-name.css | #5F9EA0 | — |
| support.type.property-name.json | #FF6347 | — |
| markup.heading | #663399 | bold |
| markup.underline.link | #4682B4 | — |
| markup.inline.raw | #7FFF00 | — |
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}!`;
}