NeuroShade
Publisher: RYN BDThemes in package: 5
A futuristic VS Code theme crafted for developers who love deep focus, modern aesthetics, and AI-inspired interfaces.
A futuristic VS Code theme crafted for developers who love deep focus, modern aesthetics, and AI-inspired interfaces.
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.control.go, keyword.package.go, keyword.import.go, keyword.func.go, keyword.struct.go, keyword.interface.go | #C4A1F8 | bold |
| string.quoted.double.go, string.quoted.raw.go | #68D391 | — |
| string.template, string.interpolated | #68D391 | italic |
| constant.numeric.go | #FFCA28 | — |
| entity.name.function.go | #7BB8F0 | — |
| storage.type.go | #C4A1F8 | — |
| variable.language | #F687B3 | bold |
| support.function | #7BB8F0 | — |
| constant.character.escape | #FFCA28 | — |
| comment, punctuation.definition.comment, comment.line.double-slash.go, comment.block.go, comment.block.documentation | #9CA3AF | |
| constant.other.symbol.ruby, punctuation.section.block.begin.ruby, punctuation.section.block.end.ruby | #68D391 | — |
| keyword, storage.type, storage.modifier, keyword.control | #C4A1F8 | bold |
| keyword.operator | #7BB8F0 | — |
| constant.numeric, constant.language, constant.language.boolean | #FFCA28 | — |
| string, constant.other.symbol, string.quoted, string.regexp | #68D391 | — |
| variable, variable.other.readwrite, variable.parameter | #E6ECF5 | — |
| entity.name.function, support.function | #7BB8F0 | — |
| entity.name.type, support.class, support.type | #C4A1F8 | — |
| entity.name.tag, meta.tag.sgml, meta.tag.html | #7BB8F0 | bold |
| entity.other.attribute-name | #FFCA28 | — |
| entity.name.tag.css, meta.selector.css, entity.other.attribute-name.class.css | #7BB8F0 | — |
| support.type.property-name.css, support.type.property-name.scss | #C4A1F8 | — |
| variable.scss, variable.other.sass | #68D391 | — |
| entity.name.function.scss, support.function.mixin.scss | #FF4D4D | — |
| variable.other.readwrite.js, identifier.js | #E6ECF5 | — |
| punctuation.section.block.begin, punctuation.section.block.end, punctuation.section.array.begin, punctuation.section.array.end, punctuation.definition.block, punctuation.definition.array, punctuation.section.parens.begin, punctuation.section.parens.end, punctuation.definition.parameters.begin, punctuation.definition.parameters.end, meta.brace.round, meta.brace.square, meta.brace.curly, punctuation.definition.begin, punctuation.definition.end | #7BB8F0 | — |
| markup.heading.markdown, markup.heading.setext.1.markdown, markup.heading.setext.2.markdown | #FF4D4D | bold |
| markup.bold.markdown, markup.bold | #FFCA28 | bold |
| markup.italic.markdown, markup.italic | #FFCA28 | italic |
| markup.inline.raw.markdown, markup.raw.block.markdown | #68D391 | — |
| markup.quote.markdown | #A0AEC0 | italic |
| markup.list.markdown | #FFCA28 | — |
| markup.link.markdown, string.other.link.title.markdown, string.other.link.description.markdown, constant.other.reference.link.markdown | #7BB8F0 | underline |
| meta.object-literal.key, support.type.property-name.json, support.type.property-name.yaml | #C4A1F8 | — |
| constant.language.json, string.quoted.double.json, string.unquoted.plain.out.yaml | #68D391 | — |
| meta.tag.js, meta.tag.tsx, meta.jsx.children | #7BB8F0 | — |
| support.class.component.js, support.class.component.tsx | #C4A1F8 | — |
| variable.language.php, support.function.construct.php, support.class.php | #FFCA28 | — |
| meta.function-call.python, meta.function-call.arguments.python | #7BB8F0 | — |
| entity.name.class.python, entity.name.function.python, meta.function.decorator.python | #C4A1F8 | — |
| meta.embedded.block.js, meta.embedded.expression.js, meta.embedded.line.tsx, meta.embedded.block.tsx, meta.embedded.expression.tsx, meta.jsx.children.tsx, meta.tag.js, meta.tag.tsx, meta.tag.without-attributes.js, meta.tag.without-attributes.tsx | #7BB8F0 | — |
| entity.other.attribute-name.jsx, entity.other.attribute-name.tsx | #FFCA28 | — |
| variable.other.readwrite.cpp, variable.other.readwrite.c, variable.other.cpp, variable.parameter.cpp, variable.other.readwrite.java, variable.parameter.java, variable.other.readwrite.cs, variable.parameter.cs, variable.other.property.cs | #E6ECF5 | — |
| variable.language.this.cs, variable.language.this.java, variable.language.this.cpp | #C4A1F8 | 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}!`;
}