Jungle Scenario
Publisher: neru devsThemes in package: 1
A dark green theme for VS Code. Without boring rulers or indentation guides.
A dark green theme for VS Code. Without boring rulers or indentation guides.
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 |
|---|---|---|
| comment | #00C459 | italic |
| constant | #B08968 | — |
| constant.numeric, constant.language, constant.charcter.escape | #4A7547 | — |
| entity.name | #4A7547 | — |
| entity.name.section, entity.name.tag, entity.name.namespace, entity.name.type | #146400 | — |
| entity.other.attribute-name, entity.other.inherited-class | #C16A6A | italic |
| invalid | #EEF0F9 | — |
| invalid.deprecated | #DBDCDE | — |
| keyword | #B08968 | — |
| meta.tag, meta.brace | #b08968 | — |
| meta.import, meta.export | #B08968 | — |
| meta.directive.vue | #C16A6A | italic |
| meta.property-name.css | #146400 | — |
| meta.property-value.css | #57B574 | — |
| meta.tag.other.html | #DBDCDE | — |
| punctuation | #00C459 | — |
| punctuation.accessor | #B08968 | — |
| punctuation.definition.string | #57B574 | — |
| meta.function | #70FF00 | — |
| support.type.property-name.json | #8ECB00 | — |
| punctuation.definition.tag | #43444D | — |
| storage.type, storage.modifier | #B08968 | — |
| string | #57B574 | — |
| support | #146400 | — |
| support.constant | #57B574 | — |
| support.function | #EEF0F9 | italic |
| variable | #4A7547 | italic |
| variable.other, variable.language, variable.function, variable.argument | #b08968 | — |
| variable.parameter | #C16A6A | — |
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}!`;
}