Equinox Colors
Publisher: equinox-teamThemes in package: 4
Ergonomic color theme with four variants — Dark Modern, Dark Contrast, Light Soft, Light Contrast. WCAG AAA (7:1) contrast throughout. Calming palette designed for long sessions.
Ergonomic color theme with four variants — Dark Modern, Dark Contrast, Light Soft, Light Contrast. WCAG AAA (7:1) contrast throughout. Calming palette designed for long sessions.
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 | #8a92a2 | italic |
| comment.block.documentation | #8a92a2 | italic |
| string, string.quoted, string.quoted.single, string.quoted.double | #2d7a5c | — |
| constant.character.escape, string constant.other.placeholder | #a04070 | — |
| constant.numeric | #a04070 | — |
| constant.language | #a04070 | — |
| keyword, keyword.control | #6b4c8f | — |
| storage, storage.modifier, storage.type, keyword.declaration | #6b4c8f | — |
| keyword.operator | #6b4c8f | — |
| entity.name.function | #1f5b9f | — |
| meta.function-call entity.name.function, meta.method-call entity.name.function | #1f5b9f | — |
| variable.parameter | #8b6d47 | — |
| variable | #8b6d47 | — |
| variable.language.this, variable.other.this | #6b4c8f | italic |
| variable.language | #6b4c8f | — |
| entity.name.tag | #6b4c8f | — |
| entity.other.attribute-name | #8b6d47 | — |
| entity.name.class | #1f5b9f | — |
| entity.name.type | #1f5b9f | — |
| meta.type.parameters entity.name.type | #1f5b9f | — |
| punctuation | #a0a8b8 | — |
| invalid | #c72c23 | — |
| markup.bold | #6b4c8f | bold |
| markup.italic | #6b4c8f | italic |
| markup.underline.link | #1f5b9f | — |
| markup.heading | #6b4c8f | bold |
| meta.function.decorator | #6b4c8f | — |
| meta.declaration.annotation | #6b4c8f | — |
| support.type.property-name | #8b6d47 | — |
| support.constant.property-value | #2d7a5c | — |
| entity.name.tag.yaml | #8b6d47 | — |
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}!`;
}