Carrot Gay Theme
Publisher: Anthony KungThemes in package: 1
A neon dark theme with deep navy surfaces, cyan highlights, and a vivid pink status bar.
A neon dark theme with deep navy surfaces, cyan highlights, and a vivid pink status bar.
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 |
|---|---|---|
| meta.paragraph.markdown, string.other.link.description.title.markdown | #EEFFFF | — |
| entity.name.section.markdown, punctuation.definition.heading.markdown | #5ABEB0 | — |
| punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, markup.quote.markdown | #82AAFF | — |
| markup.quote.markdown | #82AAFF | — |
| markup.bold.markdown, punctuation.definition.bold.markdown | #57CDFF | bold |
| markup.italic.markdown, punctuation.definition.italic.markdown | #C792EA | — |
| markup.inline.raw.string.markdown, markup.fenced_code.block.markdown | #F7ECB5 | — |
| punctuation.definition.metadata.markdown | #F3B8C2 | — |
| markup.underline.link.image.markdown, markup.underline.link.markdown | #6DBDFA | — |
| comment | #999999 | — |
| punctuation.definition.string | #6BFF81 | — |
| string | #D3EED6 | — |
| string.quoted, variable.other.readwrite.js | #D3EED6 | |
| constant.numeric | #8DEC95 | — |
| constant.language.boolean | #8DEC95 | — |
| constant | #A170C6 | — |
| constant.language, punctuation.definition.constant, variable.other.constant | #92B6F4 | — |
| constant.character, constant.other | #82AAFF | — |
| variable | #A4CEEE | — |
| variable.other.object.js | #D6DEEB | — |
| variable.other.readwrite.alias.ts, variable.other.readwrite.alias.tsx, variable.other.readwrite.ts, variable.other.readwrite.tsx, variable.other.object.ts, variable.other.object.tsx, variable.object.property.ts, variable.object.property.tsx, variable.other.ts, variable.other.tsx, variable.tsx, variable.ts | #D6DEEB | — |
| meta.class entity.name.type.class.tsx | #D29FFC | — |
| entity.name.type.tsx, entity.name.type.module.tsx | #D29FFC | — |
| meta.method.declaration storage.type.ts, meta.method.declaration storage.type.tsx | #A1BDE6 | — |
| variable.other.object.property | #F7ECB5 | — |
| variable.instance, variable.other.instance, variable.readwrite.instance, variable.other.readwrite.instance, variable.other.property | #7FDBCA | — |
| variable.other.readwrite.js, variable.parameter | #D7DBE0 | — |
| string.template meta.template.expression | #C63ED3 | — |
| string.template punctuation.definition.string | #FFFFFF | — |
| storage | #6DBDFA | |
| keyword, storage.type, storage.modifier, variable.language.this | #00BFF9 | — |
| keyword.operator | #00BFF9 | — |
| storage, meta.var.expr, meta.class meta.method.declaration meta.var.expr storage.type.js, storage.type.property.js, storage.type.property.ts | #C792EA | — |
| variable.other.meta.import.js, meta.import.js variable.other, variable.other.meta.export.js, meta.export.js variable.other | #D3EED6 | — |
| entity.name.class | #F7ECB5 | — |
| entity.other.inherited-class | #4FB4D8 | |
| variable.other.readwrites, meta.definition.variable | #F7ECB5 | |
| support.variable.property | #7FDBCA | — |
| entity.name.function | #87AFF4 | — |
| variable.parameter | #D7DBE0 | |
| entity.name.tag | #6DBDFA | |
| entity.name.type | #D29FFC | — |
| entity.other.attribute-name | #F7ECB5 | — |
| punctuation.decorator | #F7ECB5 | — |
| punctuation.definition.block, punctuation.definition.tag | #FFFFFF | — |
| support.function | #F7ECB5 | |
| support.constant | #EC9CD2 | |
| support.type, support.class | #7FDBCA | — |
| support.other.variable | #CBCDD2 | — |
| invalid | #6DBDFA | bold underline |
| invalid.deprecated | #6DBDFA | bold underline |
| support.type.property-name.json | #91DACD | — |
| support.constant.json | #ADDB67 | — |
| meta.structure.dictionary.value.json string.quoted.double | #E0AFF5 | — |
| string.quoted.double.json punctuation.definition.string.json | #80CBC4 | — |
| meta.structure.dictionary.json meta.structure.dictionary.value constant.language | #F29FD8 | — |
| source.json support | #6DBDFA | — |
| source.json string, source.json punctuation.definition.string | #ECE7CD | — |
| markup.list | #6DBDFA | — |
| markup.heading punctuation.definition.heading, entity.name.section | #4FB4D8 | |
| text.html.markdown meta.paragraph meta.link.inline, text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.begin.markdown, text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.end.markdown | #78BD65 | — |
| meta.paragraph.markdown | #FFFFFF | — |
| markup.quote | #78BD65 | — |
| meta.link | #78BD65 | — |
| source.dockerfile | #99D0F7 | — |
| keyword.operator | — | — |
| meta.function-call.generic.python | #BCE7FF | — |
| meta.function.python | #87AFF4 | — |
| keyword.control.import.python | #00BFF9 | — |
| variable.parameter.function.python | #D7DBE0 | — |
| storage.type.function.python | #D29FFC | — |
| string.quoted.double.python | #80CBC4 | — |
| constant.numeric.python | #8DEC95 | — |
| variable.language.special.self.python | #A4CEEE | — |
| comment.line.number-sign.python | #999999 | italic |
| token.info-token | #6796E6 | — |
| token.warn-token | #CD9731 | — |
| token.error-token | #F44747 | — |
| token.debug-token | #B267E6 | — |
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}!`;
}