Furiosa Syntax Theme
Publisher: furiosa-aiThemes in package: 2
Furiosa-branded syntax highlighting for VS Code — dark and light.
Furiosa-branded syntax highlighting for VS Code — dark and light.
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 | #707070 | — |
| comment.block.documentation, comment.line.documentation, string.quoted.docstring | #718778 | — |
| keyword, keyword.control, keyword.other, storage.type, storage.modifier | #cdbbff | — |
| storage.type.string | #cdbbff | italic |
| string, string.quoted, constant.character, constant.other.symbol | #fffa82 | — |
| constant.numeric, constant.language, support.constant, constant.other, variable.language, variable.other.assignment | #ff6a38 | — |
| entity.name.function, support.function, meta.function-call.generic, variable.function | #70e697 | — |
| entity.name.type, entity.name.class, support.type, support.class | #76d6ff | — |
| variable.parameter, variable.object.property | #1d99ff | italic |
| storage.modifier.lifetime, punctuation.definition.lifetime, entity.name.type.lifetime | #cdbbff | italic |
| entity.name.namespace | #76d6ff | — |
| keyword.operator, punctuation.separator, punctuation.terminator, punctuation.accessor, punctuation.comma, punctuation.semi, punctuation.brackets, meta.brace.round, punctuation.definition.block, punctuation.definition.parameters, punctuation.definition.arguments, punctuation.definition.array, punctuation.definition.dictionary, punctuation.section | #8d8d8d | — |
| entity.name.decorator, meta.decorator, entity.name.function.decorator, punctuation.definition.decorator | #e21500 | — |
| markup.heading, entity.name.section, punctuation.definition.heading | #cdbbff | bold |
| markup.bold | #d4d4d4 | bold |
| markup.italic | #d4d4d4 | italic |
| string.other.link, string.other.link.title, string.other.link.description | #76d6ff | — |
| markup.underline.link | #728187 | underline |
| markup.inline.raw, markup.raw | #fffa82 | — |
| markup.quote, punctuation.definition.quote | #718778 | italic |
| punctuation.definition.list.begin.markdown, beginning.punctuation.definition.list.markdown, markup.list.bullet | #fec2a0 | — |
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}!`;
}