Charmmono-Theme
Publisher: sumangalkaranThemes in package: 2
Charmmono Theme is a sleek VS Code theme inspired by monospace aesthetics and Charmed Icons, offering a minimal, elegant, and highly readable coding experience with dark & light modes. 🚀
Charmmono Theme is a sleek VS Code theme inspired by monospace aesthetics and Charmed Icons, offering a minimal, elegant, and highly readable coding experience with dark & light modes. 🚀
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 |
|---|---|---|
| comment, punctuation.definition.comment, string.comment | #7f8d9fff | — |
| constant, entity.name.constant, variable.other.constant, variable.language | #92a9ffff | — |
| entity, entity.name | #bd9cfeff | — |
| variable.parameter.function | #d9dfe7ff | — |
| entity.name.tag | #77d5a3ff | — |
| keyword | #fd8da3ff | — |
| storage, storage.type | #fd8da3ff | — |
| annotation | #fd8da3ff | — |
| storage.modifier.package, storage.modifier.import, storage.type.java | #d9dfe7ff | — |
| string, punctuation.definition.string, string punctuation.section.embedded source | #77d5a3ff | — |
| string.quoted.double.html, string.quoted.single.html, string.unquoted.html, punctuation.definition.string.begin.html, punctuation.definition.string.end.html, string.quoted.double.xml, string.quoted.single.xml, string.unquoted.xml, punctuation.definition.string.begin.xml, punctuation.definition.string.end.xml, string punctuation.section.embedded source | #85cdf1ff | — |
| support | #92a9ffff | — |
| support.type.property-name | #85cdf1ff | — |
| meta.property-name | #92a9ffff | — |
| variable | #ffd395ff | — |
| variable.other | #d9dfe7ff | — |
| invalid.broken | #ffc6d0ff | italic |
| invalid.deprecated | #ffc6d0ff | italic |
| invalid.illegal | #ffc6d0ff | italic |
| invalid.unimplemented | #ffc6d0ff | italic |
| carriage-return | #1f2939ff | italic underline |
| message.error | #ffc6d0ff | — |
| string source | #d9dfe7ff | — |
| string variable | #92a9ffff | — |
| source.regexp, string.regexp | #77d5a3ff | — |
| string.regexp.character-class, string.regexp constant.character.escape, string.regexp source.ruby.embedded, string.regexp string.regexp.arbitrary-repitition | #77d5a3ff | — |
| string.regexp constant.character.escape | #77d5a3ff | bold |
| support.constant | #92a9ffff | — |
| support.variable | #92a9ffff | — |
| meta.module-reference | #92a9ffff | — |
| punctuation.definition.list.begin.markdown | #ffd395ff | — |
| markup.heading, markup.heading entity.name | #92a9ffff | bold |
| markup.quote | #77d5a3ff | — |
| markup.italic | #d9dfe7ff | italic |
| markup.bold | #d9dfe7ff | bold |
| markup.raw | #92a9ffff | — |
| markup.deleted, meta.diff.header.from-file, punctuation.definition.deleted | #ffc6d0ff | — |
| markup.inserted, meta.diff.header.to-file, punctuation.definition.inserted | #77d5a3ff | — |
| markup.changed, punctuation.definition.changed | #ffd395ff | — |
| markup.ignored, markup.untracked | #333e4fff | — |
| meta.diff.range | #bd9cfeff | bold |
| meta.diff.header | #92a9ffff | — |
| meta.separator | #92a9ffff | bold |
| meta.output | #92a9ffff | — |
| brackethighlighter.tag, brackethighlighter.curly, brackethighlighter.round, brackethighlighter.square, brackethighlighter.angle, brackethighlighter.quote | #9ca7b6ff | — |
| brackethighlighter.unmatched | #ffc6d0ff | — |
| constant.other.reference.link, string.other.link | #77d5a3ff | underline |
| — | — | — |
| fenced_code.block.language | #92a9ffff | — |
| markup.inline.raw.string.markdown | #77d5a3ff | — |
| markup.bold, punctuation.definition.bold | #ffd395ff | bold |
| markup.italic, punctuation.definition.italic | #85cdf1ff | italic |
| markup.strikethrough, punctuation.definition.strikethrough | #ffc6d0ff | strikethrough |
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}!`;
}