Lynx Theme Pro + (Icons)
Publisher: bastndevThemes in package: 8
8 stunning themes + 3 icon packs for VS Code, Cursor, Windsurf & more. Dark, Light, Night, Ghibli, Fury, Kiro, NVIM & Blur. Reduce eye strain and boost your coding productivity.
8 stunning themes + 3 icon packs for VS Code, Cursor, Windsurf & more. Dark, Light, Night, Ghibli, Fury, Kiro, NVIM & Blur. Reduce eye strain and boost your coding productivity.
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 | #4a7090 | italic |
| comment.line.todo, comment.line.fixme, keyword.codetag.notation | #e0af68 | bold italic |
| string, string.quoted, punctuation.definition.string | #9ece6a | — |
| string.template, punctuation.definition.template-expression | #9ece6a | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end | #bb9af7 | — |
| keyword, keyword.control, storage.type.class, storage.type.function, storage.type.interface, storage.type.enum, storage.type.namespace | #bb9af7 | bold |
| storage.modifier, keyword.control.as, keyword.control.from, keyword.control.import, keyword.control.export | #ff80b8 | — |
| keyword.operator | #bb9af7 | — |
| keyword.operator.arithmetic, keyword.operator.comparison, keyword.operator.logical, keyword.operator.bitwise | #e0af68 | — |
| entity.name.function, meta.function-call.generic, support.function | #73daca | bold |
| meta.function-call | #7dcfff | — |
| entity.name.type, entity.name.class, entity.other.inherited-class, support.class | #86e1cb | bold |
| meta.type.annotation, entity.name.type.alias, entity.name.type.interface, entity.name.type.enum, support.type | #7dcfff | — |
| variable, variable.other.readwrite | #c0caf5 | — |
| variable.other.constant, variable.other.declaration, support.variable.property.const | #bb9af7 | bold |
| variable.object.property, meta.object.member, support.variable.property, meta.property.object | #7dcfff | — |
| constant.numeric | #bb9af7 | — |
| constant.language | #bb9af7 | italic |
| support.constant, constant.other | #bb9af7 | — |
| constant.character.escape | #ff8080 | — |
| string.regexp | #ff8080 | — |
| keyword.operator.quantifier.regexp, punctuation.definition.group.regexp, keyword.operator.or.regexp | #e0af68 | — |
| entity.name.tag, punctuation.definition.tag | #bb9af7 | — |
| entity.other.attribute-name | #e0af68 | — |
| string.quoted.double.html, string.quoted.single.html | #9ece6a | — |
| entity.name.tag.css | #bb9af7 | — |
| support.type.property-name | #7dcfff | — |
| support.function.transform.css, support.constant.property-value.css, constant.other.color.rgb-value.css, support.function.misc.css | #9ece6a | — |
| keyword.other.unit | #bb9af7 | — |
| support.type.property-name.json | #7dcfff | — |
| markup.heading, punctuation.definition.heading.markdown | #7aa2f7 | bold |
| markup.bold | #c0caf5 | bold |
| markup.italic | #d0c8f0 | italic |
| markup.inline.raw, markup.fenced_code.block | #9ece6a | — |
| markup.underline.link, string.other.link.title.markdown | #7aa2f7 | — |
| markup.quote | #4a7090 | italic |
| punctuation | #4a6070 | — |
| punctuation.section.block, punctuation.definition.block, meta.brace.square, meta.brace.round | #7090a8 | — |
| meta.decorator, punctuation.decorator, entity.name.function.decorator | #9888f8 | — |
| variable.language.this, variable.language.self, variable.language.super | #bb9af7 | italic |
| invalid.deprecated | #e0af68 | strikethrough |
| invalid | #f7768e | underline |
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}!`;
}