Neo Sploosh
Publisher: monoookiThemes in package: 2
Cool blues, soft grays, electric yellow pops for a crisp light-first theme.
Cool blues, soft grays, electric yellow pops for a crisp light-first theme.
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, comment.line, comment.line.double-slash, punctuation.definition.comment, sss | #6F7A82 | italic |
| keyword | #005F86 | — |
| keyword.control | #0E3F5A | — |
| keyword.operator | #0E3F5A | — |
| keyword.operator.assignment | #486172 | — |
| storage, storage.type | #008DC9 | — |
| constant, constant.numeric, constant.language, constant.character | #B51224 | — |
| string, string.quoted, string.regexp | #868E00 | — |
| variable, variable.parameter | #004F70 | — |
| entity.name.function, support.function | #006EA6 | — |
| entity.name.type, entity.name.class, support.class | #2F7AB3 | — |
| entity.other.attribute-name, meta.annotation | #B51224 | — |
| punctuation, operator | #73818B | — |
| invalid, invalid.deprecated, invalid.illegal | #C11124 | — |
| variable.other.property, variable.other.object.property, support.type.property-name | #0070A1 | — |
| entity.name.tag, support.class.component | #B51224 | — |
| variable.language, variable.language.this, variable.language.super | #0087BE | — |
| entity.name.type.module, support.other.module | #2F7AB3 | — |
| text.html.derivative | #172630 | — |
| entity.name.tag, meta.tag.sgml, meta.tag.html, meta.tag.xml, meta.tag.other | #B51224 | — |
| entity.other.attribute-name, meta.tag.attribute, meta.tag.xml.attribute | #005F86 | — |
| string.quoted.double.html, string.quoted.single.html, string.unquoted.html | #868E00 | — |
| punctuation.definition.tag.begin, punctuation.definition.tag.end, punctuation.definition.tag, punctuation.separator.key-value.html | #73818B | — |
| meta.tag.sgml.doctype, comment.block.html | #B0B9C0 | italic |
| entity.name.tag.js, entity.name.tag.tsx, support.class.component | #B51224 | — |
| entity.other.attribute-name.js, entity.other.attribute-name.tsx | #005F86 | — |
| markup.heading, markup.heading.markdown, markup.heading.setext, entity.name.section.markdown | #005F86 | bold |
| markup.bold, markup.bold.markdown | #B51224 | bold |
| markup.italic, markup.italic.markdown | #B51224 | italic |
| string.other.link.title.markdown, markup.underline.link.markdown | #005F87 | underline |
| markup.underline.link, markup.underline.link.image.markdown, markup.underline.link.markdown, markup.link.url.markdown | #6E7600 | — |
| markup.inline.raw.string.markdown, markup.raw.inline.markdown | #007EB6 | — |
| markup.fenced_code.block.markdown, markup.raw.block.markdown, fenced_code.block.language, fenced_code.block.markdown | #007EB6 | — |
| markup.quote, markup.quote.markdown | #B51224 | italic |
| markup.list, markup.list.numbered, markup.list.unnumbered | #73818B | — |
| meta.separator.markdown | #C6CDD3 | — |
| comment.block.html.markdown | #B0B9C0 | italic |
| punctuation.definition.heading.markdown, heading.1.markdown, markup.heading.markdown, markup.heading.setext.markdown, markup.heading.markdown | #005F86 | bold |
| punctuation.definition.list.begin.markdown | #73818B | — |
| markup.list.unnumbered.markdown, markup.list.numbered.markdown | #73818B | — |
| meta.object-literal.key, meta.object.member, meta.objectliteral, support.type.property-name, support.type.property-name.json | #0070A1 | — |
| variable.other.property, variable.other.property.js, variable.other.object.property, support.variable.property.dom, meta.property.object.js | #0070A1 | — |
| support.function, variable.function, variable.function.js, entity.name.function.member, meta.method-call | #0087BE | — |
| variable.other.object.js, variable.other.object.js.jsx | #004F70 | — |
| support.class.promise.js, support.class.promise.ts | #0087BE | — |
| meta.diff.header.from-file, punctuation.definition.from-file.diff | #B51224 | bold |
| meta.diff.header.to-file, punctuation.definition.to-file.diff | #5B8A1C | bold |
| meta.diff.range, meta.diff.index | #006EA6 | — |
| markup.inserted.diff | #6C931E | — |
| markup.deleted.diff | #B51224 | — |
| markup.changed.diff | #A18A1A | — |
| meta.diff.context, meta.diff | #88949E | — |
| punctuation.definition.range.diff | #006EA6 | — |
| meta.diff.header, meta.separator.diff | #2F7AB3 | — |
| punctuation.definition.inserted.diff | #006EA6 | — |
| support.function.misc.css, meta.function.variable.css | #006EA6 | — |
TypeScript sample highlighted with this variant's colors and tokenColors.
Loading...
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}!`;
}