Synthwave x Fluoromachine
Publisher: webrenderThemes in package: 1
Synthwave '84 x Fluoromachine Theme
Synthwave '84 x Fluoromachine 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 | #495495 | italic |
| string.quoted, string.template, punctuation.definition.string | #8a2dc0 | — |
| string.template meta.embedded.line | #b6b1b1 | — |
| variable, entity.name.variable | #61e2ff | — |
| variable.language | #8a2dc0 | bold |
| variable.parameter | — | italic |
| storage.type, storage.modifier | #f92aad | — |
| constant | #8a2dc0 | — |
| string.regexp | #8a2dc0 | — |
| constant.numeric | #8a2dc0 | — |
| constant.language | #8a2dc0 | — |
| constant.character.escape | #36f9f6 | — |
| entity.name | #8a2dc0 | — |
| entity.name.tag | #ffcc00 | — |
| punctuation.definition.tag | #36f9f6 | — |
| entity.other.attribute-name | #f92aad | — |
| entity.other.attribute-name.html | #f92aad | italic |
| entity.name.type, meta.attribute.class.html | #8a2dc0 | — |
| entity.other.inherited-class | #fc199a | — |
| entity.name.function, variable.function | #36f9f6 | — |
| keyword.control.export.js, keyword.control.import.js | #8a2dc0 | — |
| keyword | #f92aad | — |
| keyword.control | #f92aad | — |
| keyword.operator | #f92aad | — |
| keyword.operator.new, keyword.operator.expression, keyword.operator.logical | #f92aad | — |
| keyword.other.unit | #8a2dc0 | — |
| support | #8a2dc0 | — |
| support.function | #36f9f6 | — |
| support.variable | #61e2ff | — |
| meta.object-literal.key, support.type.property-name | #61e2ff | — |
| punctuation.separator.key-value | #b6b1b1 | — |
| punctuation.section.embedded | #f92aad | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end | #8a2dc0 | — |
| support.type.property-name.css, support.type.property-name.json | #fc199a | — |
| switch-block.expr.js | #8a2dc0 | — |
| constant.other.color | #8a2dc0 | — |
| support.constant.font-name | #8a2dc0 | — |
| entity.other.attribute-name.id | #36f9f6 | — |
| entity.other.attribute-name.pseudo-element, entity.other.attribute-name.pseudo-class | #fc199a | — |
| support.function.misc.css | #8a2dc0 | — |
| markup.heading, entity.name.section | #61e2ff | — |
| text.html, keyword.operator.assignment | #ffffffee | — |
| markup.quote | #b6b1b1cc | italic |
| beginning.punctuation.definition.list | #61e2ff | — |
| markup.underline.link | #fc199a | — |
| string.other.link.description | #8a2dc0 | — |
| meta.function-call.generic.python | #36f9f6 | — |
| storage.type.cs | #8a2dc0 | — |
| entity.name.variable.local.cs | #61e2ff | — |
| entity.name.variable.field.cs, entity.name.variable.property.cs | #61e2ff | — |
| source.cpp keyword.operator | #f92aad | — |
| source.elixir support.type.elixir, source.elixir meta.module.elixir entity.name.class.elixir | #36f9f6 | — |
| source.elixir entity.name.function | #8a2dc0 | — |
| source.elixir constant.other.symbol.elixir, source.elixir constant.other.keywords.elixir | #36f9f6 | — |
| source.elixir punctuation.definition.string | #8a2dc0 | — |
| source.elixir variable.other.readwrite.module.elixir, source.elixir variable.other.readwrite.module.elixir punctuation.definition.variable.elixir | #8a2dc0 | — |
| source.elixir .punctuation.binary.elixir | #61e2ff | italic |
| support.type.property-name.json.arm-template | #f92aad | — |
| support.type.parameters.parameter-name.tle.arm-template, variable.language.variables.variable-name.tle.arm-template, entity.name.tag.usernamespace.tle.arm-template, entity.name.tag.userfunction.tle.arm-template | #61e2ffff | bold |
| variable.language.variables.tle.arm-template, support.type.parameters.tle.arm-template | #36f9f6ff |
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}!`;
}