Anti-Gravity Pink
Publisher: Himani Anil PatilThemes in package: 1
Dark night mode with dreamy pink aesthetics
Dark night mode with dreamy pink aesthetics
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 |
|---|---|---|
| keyword, storage.type, storage.modifier, keyword.control | #FF2D78 | italic bold |
| string, string.quoted, string.template | #FFD6EC | — |
| entity.name.function, support.function, meta.function-call | #D485F5 | bold |
| variable, variable.other | #FFFFFF | — |
| comment, punctuation.definition.comment | #5a3050 | italic |
| constant.numeric | #FF79C6 | bold |
| keyword.operator | #FF2D78 | bold |
| constant.language, support.constant | #FFB3DE | bold |
| keyword.control.js, keyword.control.ts, storage.type.js, storage.type.ts | #FF2D78 | italic bold |
| entity.name.function.js, entity.name.function.ts | #D485F5 | bold |
| entity.name.class.js, entity.name.class.ts, entity.name.type.ts | #CF6BFF | bold |
| storage.type.function.arrow | #FF2D78 | bold |
| string.template.js, string.template.ts | #FFD6EC | — |
| support.type.primitive.ts, entity.name.type.ts | #CF6BFF | — |
| meta.decorator.ts, punctuation.decorator.ts | #FFB3DE | italic |
| keyword.control.python, storage.type.function.python | #FF2D78 | italic bold |
| entity.name.function.python, support.function.builtin.python | #D485F5 | bold |
| entity.name.class.python | #CF6BFF | bold |
| variable.language.special.self.python | #FFB3DE | italic |
| entity.name.function.decorator.python | #FF79C6 | italic bold |
| string.quoted.docstring.multi.python | #7B3F6E | italic |
| entity.name.tag | #FF2D78 | bold |
| punctuation.definition.tag | #FF6EB4 | — |
| entity.other.attribute-name | #FFB3DE | — |
| string.quoted.double.html, string.quoted.single.html | #FFD6EC | — |
| meta.tag.sgml.doctype | #7B3F6E | italic |
| text.html.basic | #FFFFFF | — |
| support.type.property-name.css | #D485F5 | — |
| support.constant.property-value.css, constant.other.color.rgb-value.css | #FFD6EC | — |
| entity.other.attribute-name.class.css, entity.other.attribute-name.id.css | #FF2D78 | bold |
| variable.css, variable.other.custom-property.name.css | #CF6BFF | — |
| keyword.control.java, keyword.control.cpp, keyword.control.cs | #FF2D78 | italic bold |
| entity.name.class.java, entity.name.class.cpp, entity.name.class.cs | #CF6BFF | bold |
| entity.name.function.java, entity.name.function.cpp, entity.name.function.cs | #D485F5 | bold |
| storage.type.annotation.java, meta.attribute.cs | #FFB3DE | italic |
| support.type.property-name.json | #FF2D78 | bold |
| string.quoted.double.json | #FFD6EC | — |
| constant.numeric.json | #FF79C6 | bold |
| constant.language.json | #D485F5 | bold |
| constant.language.null.json | #FFB3DE | italic bold |
| punctuation.definition.dictionary.begin.json, punctuation.definition.dictionary.end.json | #FF2D78 | bold |
| punctuation.definition.array.begin.json, punctuation.definition.array.end.json | #CF6BFF | bold |
| punctuation.separator.dictionary.key-value.json, punctuation.separator.array.json | #FF79C6 | — |
| punctuation.definition.string.begin.json, punctuation.definition.string.end.json | #FF2D78 | — |
| keyword.control.shell, keyword.other.shell | #FF2D78 | bold |
| support.function.builtin.shell, entity.name.command.shell | #D485F5 | bold |
| variable.other.normal.shell, variable.other.special.shell | #CF6BFF | — |
| comment.line.shebang.shell | #FFB3DE | italic bold |
| variable.other.env | #FF2D78 | bold |
| string.quoted.double.env, string.unquoted.env | #FFD6EC | — |
| comment.line.number-sign.env | #5a3050 | italic |
| support.module.node, support.type.object.module.node | #CF6BFF | bold |
| keyword.other.sql, storage.type.sql | #FF2D78 | italic bold |
| support.function.aggregate.sql, entity.name.function.sql | #D485F5 | bold |
| entity.name.table.sql, variable.other.table.sql | #CF6BFF | bold |
| string.quoted.single.sql, string.quoted.double.sql | #FFD6EC | — |
| constant.numeric.sql | #FF79C6 | bold |
| comment.line.double-dash.sql, comment.block.sql | #5a3050 | italic |
| storage.type.sql, support.type.sql | #FFB3DE | — |
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}!`;
}