Synthwave x Fluoromachine & epic animations
Publisher: TheCodemonkeyThemes in package: 1
This theme brings crazy 80's animations into your VS code ππ
This theme brings crazy 80's animations into your VS code ππ
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}!`;
}