Chimera Theme
Publisher: roydukkeyThemes in package: 2
A dark theme for Visual Studio Code inspired by the Dracula, Dark, and Dark+ themes
A dark theme for Visual Studio Code inspired by the Dracula, Dark, and Dark+ themes
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 | #DEE0E3 | — |
| emphasis | — | italic |
| strong | — | bold |
| header | #000080 | — |
| comment | #6272A4 | — |
| constant.language | #F3AFE6 | — |
| constant.numeric, variable.other.enummember, keyword.operator.plus.exponent, keyword.operator.minus.exponent | #C8F1BA | — |
| constant.regexp | #646695 | — |
| entity.name.tag | #F3AFE6 | — |
| entity.name.tag.css | #F3AFE6 | — |
| entity.other.attribute-name | #B6F6FD | — |
| 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, entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-element.css, source.css.less entity.other.attribute-name.id, entity.other.attribute-name.scss | #F3AFE6 | — |
| invalid | #F09489 | — |
| markup.italic | #FFCA92 | italic |
| markup.strikethrough | — | strikethrough |
| markup.underline | #FFCA92 | underline |
| markup.bold | #FFCA92 | bold |
| markup.heading | #F3AFE6 | bold |
| markup.inserted | #C8F1BA | — |
| markup.deleted, markup.inline.raw | #F6FACA | — |
| markup.changed | #F3AFE6 | — |
| punctuation.definition.list.begin.markdown, punctuation.definition.quote.begin.markdown | #CAA9FA | — |
| punctuation.definition.tag | #676E79 | — |
| meta.preprocessor, entity.name.function.preprocessor | #F3AFE6 | — |
| meta.preprocessor.string | #F6FACA | — |
| meta.preprocessor.numeric | #C8F1BA | — |
| meta.structure.dictionary.key.python | #B6F6FD | — |
| meta.diff.header | #F3AFE6 | — |
| storage | #F3AFE6 | — |
| storage.type | #F3AFE6 | — |
| storage.modifier, keyword.operator.noexcept | #F3AFE6 | — |
| string, meta.embedded.assembly | #F6FACA | — |
| string.tag | #F6FACA | — |
| string.value | #F6FACA | — |
| string.regexp | #F09489 | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end, punctuation.section.embedded | #F3AFE6 | — |
| meta.template.expression | #DEE0E3 | — |
| support.type.vendored.property-name, support.type.property-name, variable.css, variable.scss, variable.other.less, source.coffee.embedded | #B6F6FD | — |
| keyword | #F3AFE6 | — |
| keyword.control | #F3AFE6 | — |
| keyword.operator | #DEE0E3 | — |
| 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 | #F3AFE6 | — |
| keyword.other.unit, keyword.control.unit | #C8F1BA | — |
| punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php | #F3AFE6 | — |
| keyword.operator.type.php | #F3AFE6 | — |
| support.function.git-rebase | #B6F6FD | — |
| constant.sha.git-rebase | #C8F1BA | — |
| storage.modifier.import.java, variable.language.wildcard.java, storage.modifier.package.java | #DEE0E3 | — |
| variable.language | #F3AFE6 | — |
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}!`;
}