EKKL3S1A Themes
Publisher: ekkl3s1aThemes in package: 4
A set of personalized dark color themes: Burgundy, Teal/Turquoise, Purple/Pink and Star Trek: LCARS.
A set of personalized dark color themes: Burgundy, Teal/Turquoise, Purple/Pink and Star Trek: LCARS.
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 | #7CA8BF | italic |
| keyword, storage, storage.type | #FF7777 | — |
| keyword.control, keyword.operator | #FF8888 | — |
| string, punctuation.definition.string | #F1DABF | — |
| constant.numeric, constant.language | #FF9999 | — |
| variable, identifier | #F1DABF | — |
| entity.name.function, support.function | #206383 | — |
| entity.name.type, support.type, entity.name.class | #4A95B8 | — |
| punctuation.definition.block, punctuation.section.block, meta.brace.curly | #FF6666 | — |
| punctuation.squarebracket.open, punctuation.squarebracket.close | #206383 | — |
| punctuation.definition.parameters.begin, punctuation.definition.parameters.end, meta.brace.round | #4A95B8 | — |
| keyword.control.java, storage.modifier.java, storage.type.primitive.java | #FF7777 | — |
| storage.type.java, entity.name.type.class.java, support.class.java | #4A95B8 | — |
| entity.name.function.java, meta.method-call.java | #206383 | — |
| storage.type.annotation.java, punctuation.definition.annotation.java | #DFAF79 | — |
| variable.parameter.java | #F1DABF | — |
| entity.name.tag.yaml, entity.name.tag, meta.object-literal.key.yaml | #206383 | — |
| string.unquoted.plain.out.yaml, string.quoted.single.yaml, string.quoted.double.yaml | #F1DABF | — |
| punctuation.separator.key-value.yaml, punctuation.definition.block.sequence.item.yaml | #FF6666 | — |
| constant.other.reference.link.yaml | #DFAF79 | — |
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}!`;
}