Pink Puff
Publisher: Jet C.Themes in package: 1
I only need three colors in my life, pink, black, and white. And Pink is the most romantic, passionate, and vigorous color.
I only need three colors in my life, pink, black, and white. And Pink is the most romantic, passionate, and vigorous color.
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 | #525863 | italic |
| string.template meta.embedded.line | #F6F8F7 | — |
| variable.parameter, variable.other, constant.language | #FFFFFF | italic |
| storage.type, storage.modifier | #D58FDB | italic |
| string.regexp | #B4C1D0 | — |
| meta.jsx.children.js, meta.property-value.css, text.html.derivative, constant.length.units.css, support.function.misc.css, support.function.transform.css, meta.function.color.css, constant.other.color.rgb-value.hex.css, meta.identifier.css | #5F8658 | — |
| constant.language | #CB602D | — |
| constant.character.escape | #CB602D | — |
| entity.name | #A8C3C8 | — |
| punctuation.definition.tag, punctuation.definition.block.js, punctuation.definition.string.begin, punctuation.definition.string.end, meta.property-list.css, storage.type.function.arrow.js | #5F8658 | — |
| entity.other.attribute-name | #D58FDB | italic |
| entity.name.function, variable.function, meta.export.default.js | #77DFEF | — |
| keyword | #D167B5 | italic |
| keyword.control | #D58FDB | normal |
| keyword.operator | #CB602D | normal |
| keyword.other.unit | #a801d4 | — |
| support | #B4C1D0 | — |
| support.function | #EE0F88 | — |
| support.variable | #FFFFFF | — |
| meta.object-literal.key, support.type.property-name | #D58FDB | — |
| meta.function-call.generic.python | #A771FE | — |
| entity.name.type.class.python | #D58FDB | — |
| punctuation.definition.decorator.python, support.type.python | #7EB3FF | — |
| variable.language.special.self.python, variable.language.special.cls.python | #D58FDB | — |
| support.variable.magic.python | #EE0F88 | — |
| storage.type.string.python, string.quoted.single.python, string.quoted.docstring.multi.python, string.quoted.docstring.multi.python punctuation.definition.string.begin.python, string.quoted.docstring.multi.python punctuation.definition.string.end.python, string.quoted.docstring.multi.python constant.character.escape.python | #5F8658 | normal |
| variable.other.property.js | #B4C1D0 | italic |
| variable.other.object.js | #F6F8F7 | — |
| meta.brace.square, meta.brace.round, punctuation.definition.block | #A8C3C8 | — |
| punctuation.separator.key-value | #ffffff | — |
| punctuation.section.embedded | #ffffff | — |
| punctuation.section.embedded | #5F8658 | — |
| string.template | #D58FDB | — |
| support.type.property-name.css, support.type.vendored.property-name.css, meta.property-name | #D58FDB | — |
| support.constant.font-name | #B4C1D0 | — |
| entity.other.attribute-name.id | #D167B5 | — |
| entity.other.attribute-name.pseudo-element, entity.other.attribute-name.pseudo-class | #F6F8F7 | — |
| markup.heading, entity.name.section | #B4C1D0 | — |
| markup.quote | #D167B5 | — |
| beginning.punctuation.definition.list | #B4C1D0 | — |
| markup.underline.link | #F6F8F7 | — |
| string.other.link.description | #B4C1D0 | — |
| entity.name.tag.yaml, punctuation.definition.block.sequence.item.yaml | #D167B5 | — |
| storage.type.cs | #D167B5 | — |
| entity.name.variable.local.cs | #B4C1D0 | — |
| entity.name.variable.field.cs, entity.name.variable.property.cs | #B4C1D0 | — |
| source.cpp keyword.operator | #D167B5 | — |
| punctuation.definition.heading.markdown | #D167B5 | — |
| punctuation.definition.list | #D167B5 | — |
| punctuation.definition.bold.markdown | #D58FDB7a | — |
| punctuation.definition.italic.markdown | #ffffff7e | — |
| markup.bold.markdown, entity.name.section.markdown | — | bold |
| markup.italic.markdown | — | italic |
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}!`;
}