Toxic
Publisher: Sage FennelThemes in package: 1
A toxic purple theme featuring slime green accents
A toxic purple theme featuring slime green accents
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.embedded, source.groovy.embedded, string meta.image.inline.markdown | #d4ccff | — |
| emphasis | — | italic |
| strong | — | bold |
| header | #83d411 | — |
| comment, punctuation.definition.comment | #8f8aa8 | — |
| constant.language | #ff9933 | — |
| constant.regexp | #ffb366 | — |
| support.class.component, entity.name.tag | #c6e996 | — |
| entity.name.tag.css | #d4ccff | — |
| entity.other.attribute-name | #0bdada | — |
| entity.other.attribute-name.class.css, entity.other.attribute-name.class.mixin.css, entity.other.attribute-name.id.css, entity.other.attribute-name.parent-selector.css, source.css.less entity.other.attribute-name.id, entity.other.attribute-name.scss | #0bdada | — |
| entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-element.css | #09aaaa | — |
| invalid | #ff6882 | — |
| markup.underline | — | underline |
| markup.bold | #0bdada | bold |
| markup.heading | #83d411 | bold |
| markup.italic | #0bdada | italic |
| markup.strikethrough | — | strikethrough |
| markup.inserted | #6da8ff | — |
| markup.deleted | #ff6882 | — |
| markup.changed | #f29324 | — |
| punctuation.definition.quote.begin.markdown | #9b89f5 | — |
| punctuation.definition.list.begin.markdown | #9b89f5 | — |
| markup.inline.raw | #0bdada | — |
| punctuation.definition.tag | #9b89f5 | — |
| meta.preprocessor, entity.name.function.preprocessor | #0bdada | — |
| meta.preprocessor.string | #ffb366 | — |
| constant.numeric, meta.preprocessor.numeric | #ffcc99 | — |
| meta.structure.dictionary.key.python | #83d411 | — |
| source.diff | #9b89f5 | — |
| meta.diff.header | #f7f1ff | — |
| storage | #d4ccff | — |
| source.java storage.type, source.go storage.type | #0bdada | — |
| storage.type | #83d411 | — |
| storage.modifier, keyword.operator.noexcept | #83d411 | — |
| string, meta.embedded.assembly, constant.other.symbol | #ffb366 | — |
| string.tag | #ffb366 | — |
| string.value | #ffb366 | — |
| string.regexp | #ffb366 | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end, punctuation.section.embedded | #9b89f5 | — |
| meta.template.expression, meta.interpolation | #d4ccff | — |
| support.type.vendored.property-name, support.type.property-name, variable.css, variable.scss, variable.other.less, source.coffee.embedded | #c6e996 | — |
| keyword | #83d411 | — |
| keyword.control | #83d411 | — |
| keyword.operator.type.annotation | #9b89f5 | — |
| keyword.operator | #83d411 | — |
| keyword.operator.new, keyword.operator.expression, keyword.operator.cast, keyword.operator.sizeof, keyword.operator.alignof, keyword.operator.typeid, keyword.operator.alignas, keyword.operator.instanceof, keyword.operator.logical.python, keyword.operator.wordlike | #83d411 | — |
| keyword.other.unit | #ff9933 | — |
| punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php | #9b89f5 | — |
| storage.modifier.import.java, variable.language.wildcard.java, storage.modifier.package.java | #d4ccff | — |
| variable.language | #09aaaa | — |
| entity.name.function, meta.function-call.generic, support.function, support.constant.handlebars, source.powershell variable.other.member, entity.name.operator.custom-literal | #9efafa | — |
| support.class, support.type, entity.name.type, entity.name.namespace, entity.other.attribute, entity.name.scope-resolution, entity.name.class | #0bdada | — |
| meta.type.cast.expr, meta.type.new.expr, support.constant.math, support.constant.dom, support.constant.json, entity.other.inherited-class | #0bdada | — |
| keyword.control, source.cpp keyword.operator.new, keyword.operator.delete, keyword.other.using, keyword.other.operator, entity.name.operator | #83d411 | — |
| variable, meta.definition.variable.name, support.variable, entity.name.variable | #d4ccff | — |
| meta.object-literal.key | #c6e996 | — |
| support.constant.property-value, support.constant.font-name, support.constant.media-type, support.constant.media, constant.other.color.rgb-value, constant.other.rgb-value, support.constant.color | #9efafa | — |
| constant.other.placeholder | #83d411 | — |
| punctuation.definition.group.regexp, punctuation.definition.group.assertion.regexp, punctuation.definition.character-class.regexp, punctuation.character.set.begin.regexp, punctuation.character.set.end.regexp, keyword.operator.negation.regexp, support.other.parenthesis.regexp | #ffcc99 | — |
| constant.character.character-class.regexp, constant.other.character-class.set.regexp, constant.other.character-class.regexp, constant.character.set.regexp | #ffcc99 | — |
| keyword.operator.or.regexp, keyword.control.anchor.regexp | #9b89f5 | — |
| keyword.operator.quantifier.regexp | #ffcc99 | — |
| constant.character, constant.other.option | #ffcc99 | — |
| constant.character.escape | #ffcc99 | — |
| entity.name.label | #d4ccff | — |
| punctuation, meta.brace | #9b89f5 | — |
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}!`;
}