FuZZy Theme
Publisher: DecameronThemes in package: 2
FuZZy Theme, with eye-caring colors, made with 🧡
FuZZy Theme, with eye-caring colors, made with 🧡
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 | #bbb | — |
| comment.block, comment.block.documentation | #b8b8b8 | — |
| string | #809440 | — |
| constant.numeric | #f7b365 | — |
| constant.language | #f7b365 | — |
| constant.character, constant.other | #f7b365 | — |
| keyword | #2d7ad3 | — |
| storage | #2e87ec | — |
| storage.type | #2e87ec | — |
| entity.name.class, entity.name.type, entity.name.namespace, entity.name.scope-resolution | #139680 | — |
| entity.other.inherited-class | #809440 | — |
| entity.name.function | #d49100 | — |
| variable.parameter | #d8ccab | — |
| entity.name.tag | #d8ccab | — |
| entity.other.attribute-name | #f7b365 | — |
| support.function | #d64000 | — |
| support.constant | #f7b365 | — |
| support.type, support.class | #d8ccab | — |
| support.other.variable | — | |
| invalid | #dc3958 | — |
| invalid.deprecated | #dc3958 | — |
| meta.diff, meta.diff.header | #ceb465 | — |
| markup.deleted | #3ca7ff | — |
| markup.changed | #3ca7ff | — |
| markup.inserted | #3ca7ff | — |
| markup.underline.link | #ceb465 | — |
| markup.quote | #809440 | — |
| markup.bold, markup.italic | #f7b365 | — |
| markup.inline.raw | #f7b365 | — |
| markup.heading, markup.heading.setext | #af1400 | — |
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}!`;
}