Naruto Shinobi Theme
Publisher: Kushal Raj G SThemes in package: 25
Believe it! A vibrant VS Code theme inspired by Naruto Uzumaki and the ninja world. Features iconic orange, blue, and dark colors from the beloved anime.
Believe it! A vibrant VS Code theme inspired by Naruto Uzumaki and the ninja world. Features iconic orange, blue, and dark colors from the beloved anime.
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 | #DDA0DD | italic |
| keyword, storage.type, storage.modifier | #00BFFF | bold |
| keyword.operator, keyword.operator.new, keyword.operator.expression, keyword.operator.logical | #87CEEB | bold |
| variable, variable.other, variable.parameter, variable.language | #E6E6FA | — |
| entity.name.function, support.function, meta.function-call | #F0EAD6 | bold |
| entity.name.type, entity.name.class, support.class | #D8BFD8 | bold |
| string, string.quoted, string.template | #F8F8FF | — |
| constant, constant.language, constant.numeric, constant.character | #191970 | bold |
| support.type, entity.name.type.instance | #FFF5EE | — |
| entity.other.attribute-name, entity.other.attribute-name.html | #87CEEB | italic |
| entity.name.tag, meta.tag | #FFFDD0 | bold |
| variable.other.property, support.type.property-name | #FFB6C1 | — |
| invalid, invalid.illegal, invalid.broken | #FFC0CB | bold underline |
| keyword.control.import, keyword.control.from, meta.import | #00BFFF | bold |
| constant.numeric, constant.numeric.integer, constant.numeric.float | #000080 | — |
| string.regexp, constant.character.escape | #87CEEB | bold |
| meta.decorator, entity.name.function.decorator | #191970 | italic |
| punctuation.definition, punctuation.separator, punctuation.terminator | #9a8aaa | — |
| support.type, support.class, support.other | #FF8C00 | — |
| entity.name.type.module, support.module | #FFB6C1 | bold |
| entity.name.type.namespace, entity.name.namespace | #E6E6FA | — |
| support.type.property-name.json, meta.object-literal.key | #00BFFF | — |
| markup.bold | #D8BFD8 | bold |
| markup.italic | #E6E6FA | italic |
| markup.heading, entity.name.section | #D8BFD8 | bold |
| markup.underline.link | #87CEEB | underline |
| markup.quote | #DDA0DD | italic |
| markup.inline.raw, markup.fenced_code.block | #F0EAD6 | — |
| markup.inserted | #87CEEB | — |
| markup.deleted | #FFB6C1 | — |
| markup.changed | #E6E6FA | — |
| meta.brace, meta.block, meta.bracket | #00BFFF | — |
| variable.parameter, meta.function.parameters | #E6E6FA | italic |
| entity.name.function.method, meta.method-call | #00BFFF | bold |
| entity.name.type.interface, support.type.interface | #F0EAD6 | bold |
| entity.name.type.enum, support.type.enum | #D8BFD8 | — |
| storage.type.annotation, meta.annotation | #191970 | italic |
| variable.language.this, variable.language.self | #D8BFD8 | italic bold |
| support.function.builtin, support.variable.builtin | #00BFFF | — |
| comment.block.documentation | #E6E6FA | italic |
| constant.character.escape | #87CEEB | — |
| meta.template.expression | #F8F8FF | — |
| entity.name.label | #00BFFF | bold |
| entity.name.tag.css, entity.other.attribute-name.class.css, entity.other.attribute-name.id.css | #E6E6FA | — |
| support.type.property-name.css | #F0EAD6 | — |
| support.constant.property-value.css | #00BFFF | — |
| keyword.other.DML.sql, keyword.other.DDL.sql | #00BFFF | bold |
| support.function.magic | #87CEEB | bold italic |
| entity.name.function.special, support.function.naruto | #FF8C00 | bold |
| string.quoted.special, constant.character.love | #FFB6C1 | italic |
| entity.name.type.tenseigan, support.class.ultimate | #FFD700 | bold |
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}!`;
}