Synthwave 80's
Publisher: sanchodelnigloThemes in package: 3
Flashy, retro themes forked on BELCH theme from https://themes.vscode.one Thanks to jbbelcher
Flashy, retro themes forked on BELCH theme from https://themes.vscode.one Thanks to jbbelcher
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 | #7A8090 | italic |
| string.quoted, string.template, punctuation.definition.string, punctuation.definition.block.js | #7ADAD1 | — |
| string.template meta.embedded.line | #F3F3F3 | — |
| variable, entity.name.variable | #85EEA7 | — |
| variable.language, variable.other.object.js | #78A8D6 | — |
| variable.parameter | #78A8D6 | bold |
| storage.type, storage.modifier | #7ADAD1 | bold |
| constant | #85EEA7 | — |
| string.regexp | #85EEA7 | — |
| constant.numeric | #7ADAD1 | bold |
| constant.language | #7ADAD1 | — |
| constant.character.escape | #F2F2F2 | — |
| entity.name | #78A8D6 | — |
| entity.name.tag | #78A8D6 | bold |
| punctuation.definition.tag | #BCD4CF | — |
| entity.other.attribute-name | #BCD4CF | — |
| entity.name.type | #78A8D6 | bold |
| entity.other.inherited-class | #F2F2F2 | — |
| entity.name.function, variable.function | #85EEA7 | bold |
| keyword | #7ADAD1 | bold |
| keyword.control | #BCD4CF | bold |
| keyword.operator | #7ADAD1 | bold |
| keyword.operator.new, keyword.operator.expression, keyword.operator.logical | #7ADAD1 | bold |
| keyword.other.unit | #85EEA7 | — |
| support | #78A8D6 | bold |
| support.function | #FCFCFC | — |
| support.variable | #78A8D6 | — |
| meta.object-literal.key, support.type.property-name | #78A8D6 | — |
| variable.other.property.js | #7ADAD1 | bold |
| punctuation.separator.key-value | #7ADAD1 | bold |
| punctuation.section.embedded | #F2F2F2 | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end | #7ADAD1 | — |
| support.type.property-name.css, support.type.vendored.property-name.css | #F2F2F2 | |
| constant.other.color | #7ADAD1 | bold |
| support.constant.font-name | #85EEA7 | — |
| entity.other.attribute-name.id | #7ADAD1 | bold |
| entity.other.attribute-name.pseudo-element, entity.other.attribute-name.pseudo-class | #F2F2F2 | — |
| support.function.misc.css | #7ADAD1 | bold |
| markup.heading, entity.name.section | #85EEA7 | — |
| markup.quote | #FF407B | bold |
| beginning.punctuation.definition.list | #85EEA7 | — |
| markup.underline.link | #F2F2F2 | — |
| string.other.link.description | #85EEA7 | — |
| meta.function-call.generic.python | #FCFCFC | — |
| storage.type.cs | #7ADAD1 | bold |
| entity.name.variable.local.cs | #85EEA7 | — |
| entity.name.variable.field.cs, entity.name.variable.property.cs | #85EEA7 | — |
| source.cpp keyword.operator | #7ADAD1 | bold |
| punctuation.definition.heading.markdown | #7ADAD1 | — |
| punctuation.definition.bold.markdown | #85EEA7 | — |
| punctuation.definition.italic.markdown | #FFFFFF7E | — |
| markup.bold.markdown | — | bold |
| markup.italic.markdown | — | italic |
| keyword.control, punctuation.definition.constant.ruby, punctuation.definition.constant.hashkey.ruby, keyword.operator.comparison.ruby, keyword.operator.assignment.ruby, punctuation.separator.namespace.ruby, punctuation.separator.inheritance.ruby, punctuation.separator.method.ruby | #D780FF | — |
| entity.other.inherited-class.ruby | #85EEA7 | — |
| variable.other.readwrite.instance.ruby, variable.other.ruby | #E4E2E2 | — |
| string.quoted.single.ruby | #81FFF2 | — |
| keyword.operator.logical.ruby, keyword.operator.assignment.augmented.ruby, punctuation.definition.variable.ruby | #FF81AB | — |
| token.info-token | #6796E6 | — |
| token.warn-token | #CD9731 | — |
| token.error-token | #F44747 | — |
| token.debug-token | #B267E6 | — |
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}!`;
}