Pink Pixel Candy Themes
Publisher: pinkpixelThemes in package: 10
Neon candy dark themes and contrast-heavy editor looks for Visual Studio Code by Pink Pixel.
Neon candy dark themes and contrast-heavy editor looks for Visual Studio Code by Pink Pixel.
Full workbench mockup using this variant's colors and tokenColors.
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 | #6d9271 | italic |
| keyword, storage, storage.type, storage.modifier | #ff5ac6 | — |
| string, constant.other.symbol | #9dff00 | — |
| variable, entity.name.variable | #f8fff4 | — |
| entity.name.function, support.function | #44ffe9 | — |
| entity.name.type, support.type, storage.type.class | #f2ff39 | — |
| constant.numeric, constant.language | #ff8891 | — |
| punctuation, meta.brace, meta.delimiter | #f8fff4 | — |
| markup.heading, markup.heading entity.name.section, markup.heading.markdown | #9dff00 | bold |
| markup.bold, markup.bold.markdown | #f2ff39 | bold |
| markup.italic, markup.italic.markdown | #44ffe9 | italic |
| markup.quote, markup.quote.markdown | #bde3c4 | — |
| markup.inline.raw, markup.fenced_code.block, markup.raw.block | #38c1ff | — |
| punctuation.definition.heading, punctuation.definition.list.begin, markup.list.numbered, markup.list.unnumbered | #ff5ac6 | — |
TypeScript sample highlighted with this variant's colors and tokenColors.
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}!`;
}