Pink Pixel Sweet Themes
Publisher: Pink PixelThemes in package: 10
Candy-coated and contrast-heavy dark themes for Visual Studio Code by Pink Pixel.
Candy-coated and contrast-heavy dark themes for Visual Studio Code by Pink Pixel.
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 | #ac88ff | — |
| string | #32d9ff | — |
| constant.numeric | #CCCCCC | — |
| keyword, keyword.control.js | #02ffc0 | — |
| meta.preprocessor | #ffff63 | — |
| keyword.control.import | #dce8e9 | bold |
| support.function | #02ffc0 | — |
| declaration.function function-result | #ffff63 | — |
| declaration.function function-name | #dce8e9 | bold |
| declaration.function argument-name | #dce8e9 | bold |
| declaration.function function-arg-type | #ffff63 | — |
| declaration.function function-argument | #dce8e9 | italic |
| declaration.class class-name | #dce8e9 | underline |
| declaration.class class-inheritance | #dce8e9 | italic underline |
| comment.merge-marker.yours, comment.merge-marker.end, comment.merge-marker.theirs | #32d9ff | — |
| invalid.warning | #ffffff | — |
| invalid | #FFF9F9 | bold |
| invalid.deprecated.trailing-whitespace | #dce8e9 | — |
| declaration.section section-name | #dce8e9 | italic |
| string.interpolation | #ff6268 | — |
| string.regexp | #666666 | — |
| variable | #ff6eb1 | — |
| constant, support.constant | #ac88ff | — |
| constant.character | #32d9ff | — |
| constant.language | #ffff63 | bold |
| embedded | #dce8e9 | underline |
| keyword.markup.element-name | #ac88ff | — |
| keyword.markup.attribute-name, entity.name.type.attribute-name | #ff6eb1 | — |
| meta.attribute-with-value | #ff6eb1 | — |
| keyword.exception | #C82255 | bold |
| keyword.operator | #30ffc1 | — |
| keyword.control | #ffff63 | bold |
| support.constant.tm-language-def, support.constant.name.tm-language-def | #ac88ff | — |
| meta.tag.preprocessor.xml | #68685B | — |
| meta.tag.sgml.doctype | #888888 | — |
| string.quoted.docinfo.doctype.DTD | #dce8e9 | italic |
| comment.other.server-side-include.xhtml, comment.other.server-side-include.html | #909090 | — |
| text.html declaration.tag, text.html meta.tag, source.scss entity.name.tag, text.html entity.name.tag.xhtml | #02ffc0 | — |
| keyword.other.phpdoc.php | #777777 | — |
| keyword.other.include.php | #C82255 | — |
| support.constant.core.php | #ffba5a | bold |
| support.constant.std.php | #ffba5a | bold |
| variable.other.global.php | #B72E1D | — |
| variable.other.global.safer.php | #02ffc0 | — |
| string.quoted.single.php | #bef4f8 | — |
| keyword.storage.php | #ac88ff | — |
| string.quoted.double.php | #bef4f8 | — |
| entity.other.attribute-name.id.css | #ffba5a | — |
| entity.name.tag.css | #bfff3e | bold |
| entity.other.attribute-name.class.css | #ffff63 | — |
| entity.other.attribute-name.pseudo-class.css | #32d9ff | — |
| invalid.bad-comma.css | #FFFFFF | — |
| support.constant.property-value.css | #d2679a | — |
| support.type.property-name.css, storage.modifier | #ffff63 | — |
| support.constant.font-name.css | #bef4f8 | — |
| keyword.other.unit.css | #ac88ff | — |
| string.quoted.single.js | #32d9ff | — |
| string.quoted.double.js | #C1538A | — |
| keyword.operator.new.js | #02ffc0 | — |
| storage.type | #02ffc0 | — |
| comment.line.number-sign.r | #32d9ff | italic |
| comment.line.number-sign-tick.r | #ff6268 | italic |
| comment.line.number-sign-plus.r | #ac88ff | italic |
| markup.raw.block.markdown | #dce8e9 | — |
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}!`;
}