Joker Neon Theme
Publisher: fidelp27Themes in package: 1
A dark VS Code theme featuring vibrant neon purple, green, pink, and cyan syntax highlighting with a chaotic, eye-catching aesthetic
A dark VS Code theme featuring vibrant neon purple, green, pink, and cyan syntax highlighting with a chaotic, eye-catching aesthetic
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 | #6b4d7a | italic |
| string, string.quoted | #00ff41 | — |
| constant.numeric | #ff1e8c | — |
| constant.language | #ff1e8c | bold |
| constant.character, constant.other | #ff66b2 | — |
| variable | #e8e4f0 | — |
| keyword, keyword.control | #bf00ff | bold |
| keyword.operator | #ff1e8c | — |
| storage, storage.type | #d633ff | bold |
| entity.name.class, entity.name.type.class | #ffed4e | bold |
| entity.name.function | #00ffff | bold |
| variable.parameter | #bf99ff | — |
| entity.name.tag | #bf00ff | — |
| entity.other.attribute-name | #00ff41 | — |
| support.function | #00ffff | — |
| support.constant | #ff66b2 | — |
| support.type, support.class | #ffed4e | — |
| invalid | #ffffff | — |
| invalid.deprecated | #ffffff | — |
| source.json meta.structure.dictionary.json support.type.property-name.json | #bf00ff | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #00ffff | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #00ff41 | — |
| markup.heading | #bf00ff | bold |
| markup.bold | #ff1e8c | bold |
| markup.italic | #00ffff | italic |
| markup.inline.raw, markup.fenced_code | #00ff41 | — |
| markup.underline.link | #00ffff | — |
| entity.other.attribute-name.class.css | #ffed4e | — |
| entity.other.attribute-name.id.css | #00ff41 | — |
| support.type.property-name.css | #00ffff | — |
| support.constant.property-value.css | #bf00ff | — |
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}!`;
}