Abyss+
Publisher: Praveer Singh ChauhanThemes in package: 2
So it is basically the Abyss theme with few tweaks here and there to suit my style
So it is basically the Abyss theme with few tweaks here and there to suit my style
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 |
|---|---|---|
| — | #6688cc | — |
| meta.embedded, source.groovy.embedded | #6688cc | — |
| string | #22aa44 | — |
| comment, comment.block.js | #457dadd3 | — |
| support.type, support.class, entity.name.function | #940ce9cc | — |
| constant.numeric | #2859e2 | — |
| entity.other.attribute-name | #ddbb88 | — |
| entity.name.tag | #144dc7 | — |
| variable | — | |
| keyword | #1220ec | — |
| storage | #225588 | |
| storage.type | #9966b8 | — |
| entity.name.class, entity.name.scope-resolution, entity.name.namespace | #ffeebb | underline |
| constant.language | #AE81FF | — |
| entity.other.inherited-class | #ddbb88 | underline |
| variable.parameter | #2277ff | — |
| support.function | #9966b8 | |
| support.constant | #9966b8 | |
| support.other.variable | — | |
| invalid | #A22D44 | |
| invalid.deprecated | #A22D44 | — |
| meta.diff, meta.diff.header | #E0EDDD | — |
| markup.deleted | #dc322f | |
| markup.changed | #cb4b16 | |
| markup.inserted | #1c5a54 | — |
| markup.quote | #22aa44 | — |
| markup.bold | #22aa44 | — |
| markup.bold | — | bold |
| markup.inline.raw | #9966b8 | |
| markup.heading, markup.heading.setext | #6688cc | bold |
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}!`;
}