Hunter x Hunter Themes
A collection of VS Code themes based on the characters of Hunter x Hunter by Yoshihiro Togashi.
A collection of VS Code themes based on the characters of Hunter x Hunter by Yoshihiro Togashi.
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 |
|---|---|---|
| keyword, storage.type, storage.modifier | #F26B38 | bold |
| entity.name.function, support.function | #58B852 | — |
| string, punctuation.definition.string | #A8DA9B | — |
| variable, meta.parameter | #E0C2A6 | — |
| constant.numeric, constant.language | #EAA845 | — |
| entity.name.type, entity.name.class, support.class | #80C2A5 | bold |
| comment, punctuation.definition.comment | #536B56 | italic |
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 |
|---|---|---|
| keyword, storage.type, storage.modifier | #C070B9 | bold |
| entity.name.function, support.function | #6C8EFF | — |
| string, punctuation.definition.string | #D0B3FF | — |
| variable, meta.parameter | #E0D7EC | — |
| constant.numeric, constant.language | #F082AC | — |
| entity.name.type, entity.name.class, support.class | #89B4FA | bold |
| comment, punctuation.definition.comment | #5C638A | italic |
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 |
|---|---|---|
| keyword, storage.type, storage.modifier | #F3B33E | bold |
| entity.name.function, support.function | #789BFF | — |
| string, punctuation.definition.string | #E0C870 | — |
| variable, meta.parameter | #EADCD3 | — |
| constant.numeric, constant.language | #FF5252 | — |
| entity.name.type, entity.name.class, support.class | #63C5DA | bold |
| comment, punctuation.definition.comment | #515A85 | italic |
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 |
|---|---|---|
| keyword, storage.type, storage.modifier | #D4B06A | bold |
| entity.name.function, support.function | #34A3B1 | — |
| string, punctuation.definition.string | #7FABCB | — |
| variable, meta.parameter | #E5D1C0 | — |
| constant.numeric, constant.language | #E08B55 | — |
| entity.name.type, entity.name.class, support.class | #50B4C8 | bold |
| comment, punctuation.definition.comment | #485D7C | italic |
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}!`;
}
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}!`;
}