Ilyat
Publisher: LJWhite-WVThemes in package: 5
A series of dark themes for VSCode inspired by some of my favorite themes - Eva, Mariana, Poimandres
A series of dark themes for VSCode inspired by some of my favorite themes - Eva, Mariana, Poimandres
Full workbench mockup using this variant's colors and tokenColors.
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 | #ffffff70 | — |
| string | #A3CE9E | — |
| punctuation.definition | #5fb3b3 | — |
| constant.numeric | #FAB763 | — |
| constant.language | #e06c75 | italic |
| constant.character, constant.other | #A78CFA | — |
| variable.member | #EE6A6F | — |
| variable.other,support.variable,meta.definition.variable,variable.other.object,variable.other.readwrite,entity.name.type.enum,meta.method.body,entity.name.variable,meta.block.c,meta.class-struct-block,meta.item-access.python,meta.function-call.arguments.python,meta.item-access.arguments.python,variable.parameter.keyframe-list.css,meta.property-value.css,meta.property-value.scss,entity.name.tag.custom,entity.name.function.scss,variable,meta.function-call.c,meta.parens,support.constant.color.w3c-standard-color-name,support.constant.color.w3c-extended-color-name,constant.other.color.rgb-value.hex,constant.other.rgb-value,support.constant.color.w3c-extended-color-name.css,text.tex.latex constant.other.math.tex,constant.other.general.math.tex,constant.other.general.math.tex,constant.character.math.tex,constant.other.reference.citation.latex,code-runner.output,meta.preprocessor.macro entity.name.function.preprocessor,entity.name.type.enum,entity.name.variable.tuple-element,constant.other.color.rgb-value,constant.other.color.rgb-value punctuation.definition.constant, | #B0B7C3 | |
| meta.object-literal.key | #B0B7C3 | — |
| keyword, keyword.operator.word, keyword.control, keyword.operator.new.js | #FF6AB3 | — |
| string.template.js meta.template.expression.js meta.embedded.line.js | #ffffffdd | — |
| keyword.operator | #FF9070 | — |
| punctuation.separator, punctuation.terminator | #ffffff70 | — |
| punctuation.section | #ffffffdd | — |
| punctuation.accessor | #ffffff70 | — |
| punctuation.definition.annotation | #5fb3b3 | — |
| variable.other.dollar.only.js, variable.other.object.dollar.only.js, variable.type.dollar.only.js, support.class.dollar.only.js | #5fb3b3 | — |
| storage | #A78CFA | — |
| storage.type | #A78CFA | — |
| entity.name.function | #5fb3b3 | — |
| meta.object-literal.key.js | #6699cc | — |
| entity.name | #FAB763 | — |
| entity.other.inherited-class | #5fb3b3 | italic underline |
| variable.language | #EE6A6F | italic |
| entity.name.tag | #e06c75 | |
| entity.other.attribute-name | #A78CFA | — |
| variable.function, variable.annotation | #6699cc | |
| support.function, support.macro | #6495EE | italic |
| support.constant | #5fb3b3 | italic |
| variable.parameter | #FAB763 | |
| support.type, support.class | #6495EE | — |
| invalid | #ffffff70 | — |
| invalid.deprecated | #ffffffdd | — |
| entity.name.tag.yaml | #5fb3b3 | — |
| source.yaml string.unquoted | #ffffffdd | — |
| markup.heading | — | bold |
| markup.heading punctuation.definition.heading | #EE6A6F | — |
| markup.heading.1 punctuation.definition.heading | #EE6A6F | — |
| string.other.link, markup.underline.link | #6699cc | — |
| markup.bold | — | bold |
| markup.italic | — | italic |
| markup.italic markup.bold | markup.bold markup.italic | — | bold italic |
| punctuation.definition.thematic-break | #FAB763 | — |
| markup.list.numbered.bullet | #A3CE9E | — |
| markup.quote punctuation.definition.blockquote, markup.list punctuation.definition.list_item | #FAB763 | — |
| (text punctuation.definition.italic | text punctuation.definition.bold) | #c594c5 | — |
| meta.diff, meta.diff.header | #c594c5 | — |
| markup.deleted | #EE6A6F | — |
| markup.inserted | #A3CE9E | — |
| markup.changed | #ebcb8b | — |
| entity.other.attribute-name.class.css | #5fb3b3 | — |
| support.type.property-name.css | #B0B7C3 | — |
| support.constant.property-value.css | #FF9070 | — |
| constant.numeric.line-number.match | #EE6A6F | — |
| message.error | #EE6A6F | — |
| meta.tag.tsx | #B0B7C3 | — |
TypeScript sample highlighted with this variant's colors and tokenColors.
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}!`;
}