CITS Themes
Publisher: Axel OllivierThemes in package: 18
A curated collection of VS Code color themes inspired by cinema, anime, and cult films — Ghost in the Shell, Princess Mononoke, Blade Runner, Spirited Away, Studio Ghibli, Star Wars.
A curated collection of VS Code color themes inspired by cinema, anime, and cult films — Ghost in the Shell, Princess Mononoke, Blade Runner, Spirited Away, Studio Ghibli, Star Wars.
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 | #382848 | italic |
| comment.block.documentation, comment.line.documentation | #4a3460 | italic |
| string, string.quoted, string.template | #c89830 | — |
| constant.character.escape, constant.other.placeholder | #d87890 | — |
| string.regexp, punctuation.definition.string.regexp, string.regexp.character-class | #c87058 | — |
| punctuation.definition.template-expression, punctuation.section.embedded | #d87890 | — |
| constant.numeric, constant.numeric.integer, constant.numeric.float, constant.numeric.hex, constant.numeric.octal, constant.numeric.binary | #d4a828 | — |
| constant.language, constant.language.boolean, constant.language.null, constant.language.undefined | #c87058 | — |
| constant.other, constant.character | #c88838 | — |
| variable.other.constant | #c87058 | — |
| keyword, keyword.control, keyword.control.flow | #d87890 | italic |
| keyword.operator, keyword.operator.assignment, keyword.operator.comparison, keyword.operator.logical, keyword.operator.arithmetic | #8870c0 | — |
| keyword.operator.logical.python, keyword.operator.wordlike | #d87890 | italic |
| keyword.operator.new, keyword.operator.delete, keyword.operator.typeof, keyword.operator.void, keyword.operator.instanceof | #9058c0 | italic |
| storage, storage.type, storage.modifier | #9058c0 | italic |
| entity.name.function, meta.function entity.name.function | #40b878 | — |
| meta.function-call entity.name.function, meta.function-call.generic, support.function | #309060 | — |
| variable.parameter, meta.function.parameters variable.other | #dca8b8 | italic |
| storage.type.function.arrow | #8870c0 | — |
| entity.name.class, entity.name.type.class, entity.name.type | #7888d0 | — |
| entity.other.inherited-class | #6070b8 | italic |
| entity.name.type.interface, support.type.interface | #7888d0 | italic |
| entity.name.type.parameter, variable.type.parameter | #88a0e0 | — |
| support.type, support.type.primitive, keyword.type | #6070b8 | — |
| variable, variable.other, variable.other.readwrite | #c8b898 | — |
| variable.language.self, variable.language.this, variable.language.super | #c87058 | italic |
| variable.other.property, variable.other.object.property, meta.property-name, support.variable.property | #a87898 | — |
| meta.object-literal.key, meta.object.member, support.type.property-name | #907080 | — |
| punctuation, meta.brace, punctuation.separator, punctuation.terminator | #4a3460 | — |
| punctuation.definition.string.begin, punctuation.definition.string.end | #907040 | — |
| meta.decorator, entity.name.function.decorator, punctuation.decorator | #d4a828 | italic |
| entity.name.namespace, entity.name.module, entity.name.package | #6070b8 | — |
| entity.name.tag, meta.tag.sgml | #d87890 | — |
| punctuation.definition.tag, meta.tag punctuation | #6040a8 | — |
| entity.other.attribute-name, meta.tag.attributes entity.other.attribute-name | #9058c0 | — |
| meta.tag.attributes string | #c89830 | — |
| entity.other.attribute-name.class.css, entity.other.attribute-name.id.css, entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-element.css | #9058c0 | — |
| support.type.property-name.css, meta.property-name.css | #7888d0 | — |
| meta.property-value.css, support.constant.property-value.css | #c89830 | — |
| constant.other.color.rgb-value.css, keyword.other.unit.css | #d4a828 | — |
| keyword.control.at-rule.css | #d87890 | italic |
| markup.heading, entity.name.section.markdown | #d87890 | bold |
| markup.bold | #9058c0 | bold |
| markup.italic | #c87058 | italic |
| markup.inline.raw | #40b878 | — |
| markup.fenced_code.block | #40b878 | — |
| markup.underline.link | #7888d0 | underline |
| markup.quote | #4a3460 | italic |
| punctuation.definition.list.begin.markdown | #d87890 | — |
| support.type.property-name.json | #7888d0 | — |
| entity.name.tag.yaml | #7888d0 | — |
| entity.name.type.anchor.yaml, variable.other.alias.yaml | #d4a828 | — |
| support.function.builtin.shell | #40b878 | — |
| variable.other.normal.shell, variable.other.special.shell | #c89830 | — |
| invalid | #d84040 | strikethrough |
| invalid.deprecated | #c87058 | strikethrough |
| meta.diff, meta.diff.header | #3a2848 | — |
| markup.inserted | #40b878 | — |
| markup.deleted | #d84040 | — |
| markup.changed | #c89830 | — |
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}!`;
}