Chromodynamics V3 Theme
Publisher: leelhn2345Themes in package: 2
A dark color scheme originally from Chromodynamics-V2, by yousefabuz17
A dark color scheme originally from Chromodynamics-V2, by yousefabuz17
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 |
|---|---|---|
| variable.language | #FF00F2 | — |
| comment, punctuation.definition.comment, string.comment | #8b949e | — |
| constant.other.placeholder, constant.character | #ff7b72 | — |
| entity.name.constant, entity | #79c0ff | — |
| variable.other.env | #66CDAA | — |
| entity.name, entity.name.namespace | #DEB887 | — |
| entity.other.attribute-name | #B392F0 | — |
| constant.language | #1E90FF | — |
| entity.name.type | #00BFFF | — |
| entity.name.type.trait | #66cdaa | — |
| entity.name.type.enum | #00ffff | — |
| variable.other.enummember | #c76cf4 | — |
| meta.object.member, meta.embedded.expression | #c9d1d9 | — |
| entity.name.function, meta.function-call.generic | #0dec0d | — |
| entity.name.function.preprocessor, entity.name.function.macro | #FA7FA7 | — |
| entity.name.tag | #dc3958 | — |
| support.class.component | #12dd96 | — |
| support.function | #A6E22E | underline |
| constant.numeric | #1E90FF | — |
| storage, storage.type, keyword | #ff0000 | — |
| storage.modifier.package, storage.modifier.import, storage.type.java | #c9d1d9 | — |
| string, string punctuation.section.embedded source | #a5d6ff | — |
| source, variable.other, variable.other.constant.object, meta.export.default, meta.definition.variable | #FFFFFF | — |
| variable.other.constant | #FFFFFF | — |
| meta.property-name | #79c0ff | — |
| variable.parameter | #FF8C00 | — |
| constant.character, constant.other | #FFFFFF | — |
| invalid.broken | #ffa198 | italic |
| invalid.deprecated | #ffa198 | italic |
| invalid.illegal | #ffa198 | italic |
| invalid.unimplemented | #ffa198 | italic |
| carriage-return | #f0f6fc | italic underline |
| message.error | #ffa198 | — |
| string variable | #79c0ff | — |
| source.regexp, string.regexp | #a5d6ff | — |
| string.regexp.character-class, string.regexp constant.character.escape, string.regexp source.ruby.embedded, string.regexp string.regexp.arbitrary-repitition | #a5d6ff | — |
| string.regexp constant.character.escape | #7ee787 | bold |
| support.constant | #79c0ff | — |
| support.variable | #79c0ff | — |
| support.type | #C71585 | italic |
| meta.module-reference | #79c0ff | — |
| punctuation.definition.list.begin.markdown | #ffa657 | — |
| support.type.property-name.table | #4EC9B0 | |
| punctuation.definition.table.inline | #e3b341 | — |
| support.type.property-name.array | #569CD6 | |
| markup.heading, markup.heading entity.name | #79c0ff | bold |
| markup.quote | #7ee787 | — |
| markup.italic | #c9d1d9 | italic |
| markup.bold | #c9d1d9 | bold |
| markup.strikethrough | — | strikethrough |
| markup.inline.raw | #79c0ff | — |
| markup.deleted, meta.diff.header.from-file, punctuation.definition.deleted | #ffa198 | — |
| punctuation.section.embedded | #ff7b72 | — |
| markup.inserted, meta.diff.header.to-file, punctuation.definition.inserted | #7ee787 | — |
| markup.changed, punctuation.definition.changed | #ffa657 | — |
| punctuation.separator, punctuation.definition.template-expression, punctuation.accessor, punctuation.section.function, punctuation.definition.string.template | #FF0000 | bold |
| support.function.magic | #FF0000 | bold |
| punctuation.separator.key-value | #1E90FF | — |
| string.quoted.docstring | #00FF7F | — |
| markup.ignored, markup.untracked | #161b22 | — |
| meta.diff.range | #d2a8ff | bold |
| meta.diff.header | #79c0ff | — |
| meta.separator | #79c0ff | bold |
| meta.output | #79c0ff | — |
| brackethighlighter.tag, brackethighlighter.curly, brackethighlighter.round, brackethighlighter.square, brackethighlighter.angle, brackethighlighter.quote | #8b949e | — |
| brackethighlighter.unmatched | #ffa198 | — |
| constant.other.reference.link, string.other.link | #a5d6ff | — |
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}!`;
}