🎨 Bhoot Theme
💡 A clean light/dark theme set with Unique Color Pallete and Philosophy in Indian Art way | Bhoot Studio is trying to create Artworks for Digital Products with Unique Color Pallet and Philosophy on Indian Art Theory and Spirituality
💡 A clean light/dark theme set with Unique Color Pallete and Philosophy in Indian Art way | Bhoot Studio is trying to create Artworks for Digital Products with Unique Color Pallet and Philosophy on Indian Art Theory and Spirituality
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, punctuation.definition.comment | #6C7086 | italic |
| keyword, storage.type | #ffb3ff | italic |
| string, constant.other.symbol | #A6E3A1 | — |
| variable, identifier | #FFCB6B | — |
| function, entity.name.function | #89B4FA | — |
| constant.numeric, constant.language | #F9E2AF | — |
| type, entity.name.type, support.type | #00fff799 | bold italic |
| invalid, invalid.deprecated | #FFFFFF | — |
| meta, meta.embedded | #94E2D5 | — |
| entity.name.tag.html | #ff99cc | bold |
| entity.other.attribute-name.html | #7DDFFF | — |
| string.quoted.double.html, string.quoted.single.html | #C3E88D | — |
| comment.block.html | #5C6370 | italic |
| entity.name.tag.css | #FFD700 | — |
| support.type.property-name.css | #7FDBCA | — |
| constant.numeric.css, constant.other.color.rgb-value.css | #FFCB6B | — |
| keyword.other.unit.css | #F78C6C | — |
| punctuation.definition.block.css | #A6ACCD | — |
| keyword.control.js | #C792EA | bold |
| entity.name.function.js | #82AAFF | — |
| variable.other.readwrite.js | #F78C6C | — |
| string.quoted.double.js, string.quoted.single.js | #C3E88D | — |
| constant.numeric.js, constant.language.boolean.js | #FF5370 | — |
| punctuation.definition.block.js, keyword.operator.js | #89DDFF | — |
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, punctuation.definition.comment | #6A9955 | italic |
| keyword, storage.type, storage.modifier | #FF5F9E | bold |
| variable, string constant.other.placeholder | #F8F8F2 | — |
| string, constant.other.symbol | #FFFD82 | — |
| constant.numeric, constant.language, constant.character | #9AEDFE | — |
| entity.name.function, meta.function-call, support.function | #00FFC6 | — |
| variable.parameter, meta.function.parameters | #FFB86C | — |
| entity.name.type, support.class, meta.class, storage.type.class | #A799FF | — |
| entity.name.tag, meta.tag.sgml, markup.deleted.git_gutter | #FF73FA | — |
| support.constant, support.variable | #00FFFF | — |
| punctuation, meta.brace, meta.delimiter, punctuation.definition | #FFFFFF | — |
| invalid, invalid.illegal | #FFFFFF | — |
| markup.bold | #FFD700 | bold |
| markup.italic | #FF9A8B | italic |
| markup.underline | #00BFFF | underline |
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 |
|---|---|---|
| entity.name.tag.html | #FF6D00 | bold |
| entity.other.attribute-name.html | #00BCD4 | — |
| string.quoted.double.html, string.quoted.single.html | #64DD17 | — |
| comment.block.html | #90A4AE | italic |
| entity.name.tag.css | #7C4DFF | — |
| support.type.property-name.css | #00BFA5 | — |
| constant.other.color.rgb-value.css | #FF4081 | — |
| keyword.other.unit.css | #4d2600 | — |
| keyword.control.js, keyword.control.ts | #F50057 | bold |
| entity.name.function.js, entity.name.function.ts | #2979FF | — |
| variable.other.readwrite.js, variable.other.readwrite.ts | #FF8F00 | — |
| entity.name.type.class.js, entity.name.type.class.ts | #AA00FF | — |
| string.quoted.double.js, string.quoted.single.js, string.quoted.double.ts, string.quoted.single.ts | #00E676 | — |
| constant.numeric.js, constant.language.boolean.js, constant.numeric.ts, constant.language.boolean.ts | #FFC107 | — |
| entity.name.tag.yaml | #4d2600 | — |
| string.unquoted.plain.out.yaml, string.quoted.double.yaml, string.quoted.single.yaml | #00E5FF | — |
| comment.line.number-sign.yaml | #9E9E9E | italic |
| support.type.property-name.json | #4d2600 | — |
| string.quoted.double.json | #4CAF50 | — |
| constant.numeric.json | #F44336 | — |
| constant.language.boolean.json, constant.language.null.json | #7C4DFF | — |
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}!`;
}