SynthWave Dark
Publisher: SammyKumarThemes in package: 1
A Dark Synthwave/Monokai inspired colour theme to satisfy your neon dreams
A Dark Synthwave/Monokai inspired colour theme to satisfy your neon dreams
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 | #75715E | italic |
| constant.numeric, entity.other.attribute-name.pseudo-element, entity.other.attribute-name.pseudo-class, support.type.property-name.json | #FD971F | — |
| keyword, keyword.operator, keyword.operator.new, keyword.operator.expression, keyword.operator.logical, punctuation.section.embedded, source.go keyword.package.go, source.go keyword.import.go, source.go keyword.function.go, source.go keyword.type.go, source.go keyword.const.go, source.go keyword.var.go, source.go keyword.map.go, source.go keyword.channel.go, source.go keyword.control.go, source.cpp keyword.operator, string.other.link.title.markdown | #E6DB74 | — |
| storage.modifier, meta.var.expr, meta.class, storage.type.class, variable.other.constant.property.js, variable.other.property.js, source.go constant.language.go, source.go constant.other.placeholder.go, source.go variable, variable.parameter.scala, markup.italic.markdown, markup.bold.markdown, meta.attribute.class.html, punctuation.separator.key-value | #66D9EF | — |
| storage.type, meta.tag.metadata.doctype.html | #66D9EF | italic |
| variable, entity.name.variable, source.js, entity.name, entity.name.tag.js.jsx, support.variable, variable.other.object.property.js, storage.type.cs, storage.modifier.c, storage.modifier.specifier.const.cpp, meta.metadata.simple.clojure, meta.metadata.map.clojure | #F92672 | — |
| support.function, meta.function, character.escape, constant.character.escape, keyword.control.export, keyword.control.import, keyword.control.from, entity.other.attribute-name.id, meta.function-call.generic.python, variable.parameter.function-call.python, constant.other.placeholder.c, keyword.control.directive.include.c, keyword.control.directive.define.c, constant, string.template, punctuation.definition.string, constant.language.boolean.true, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html | #4ade80 | — |
| constant.language, keyword.other.unit, support.function.misc.css, keyword.operator.assignment | #F8F8F2 | — |
| entity.name.type, meta.attribute.class.html | #AE81FF | — |
| entity.name.function, variable.function, source.elixir entity.name.function | #fc0303 | — |
| variable.language | #4ade80 | bold |
| variable.parameter | #4ade80 | italic |
| entity.other.inherited-class | #D50 | — |
| string.regexp, punctuation.terminator.statement, support.constant.font-name, string.other.link.description, string.interpolated.single.dart, constant.language.boolean.false | #f97e72 | — |
| support.type.property-name.css, support.type.property-name.json, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end, switch-block.expr.js, constant.other.placeholder.cpp, keyword.control.directive.include.cpp, keyword.control.directive.define.cpp, source.go storage.type, source.go keyword.struct.go, source.go keyword.interface.go, markup.underline.link.markdown, markup.inline.raw.string.markdown, punctuation.definition.quote.begin.markdown, markup.quote.markdown, variable.parameter.dart, meta.template.expression.scala, source.elixir punctuation.definition.string, source.elixir variable.other.readwrite.module.elixir, source.elixir variable.other.readwrite.module.elixir punctuation.definition.variable.elixir | #72f1b8 | — |
| meta.object-literal.key, support.type.property-name, markup.heading, entity.name.section, beginning.punctuation.definition.list, entity.name.variable.local.cs, entity.name.variable.field.cs, entity.name.variable.property.cs, source.elixir .punctuation.binary.elixir, entity.name.section.markdown | #ff7edb | — |
| markup.heading.markdown, entity.name.section.markdown | #ff7edb | bold |
| source.elixir .punctuation.binary.elixir | #ff7edb | italic |
| source.dart, source.python, source.scala, source.go, meta.symbol.clojure | #ff7edbff | — |
| source.elixir support.type.elixir, source.elixir meta.module.elixir entity.name.class.elixir, source.elixir constant.other.symbol.elixir, source.elixir constant.other.keywords.elixir, entity.global.clojure, storage.control.clojure, source.go meta.function-call.go | #36f9f6 | — |
| entity.global.clojure | #36f9f6 | bold |
| storage.control.clojure | #36f9f6 | italic |
| markup.quote, string.template meta.embedded.line | #b6b1b1cc | italic |
| text.html, keyword.operator.assignment | #ffffffee | — |
| text.html | #fc0303 | — |
| markup.underline.link.markdown, markup.inline.raw.string.markdown | #72f1b8 | italic |
| entity.name.tag.html, entity.name.tag, meta.tag.structure.any.html | #4ade80 | — |
| entity.other.attribute-name.html, entity.other.attribute-name | #66D9EF | italic |
| string.quoted.single.html, string.quoted.double.html, punctuation.definition.string.begin.html, punctuation.definition.string.end.html, string.quoted.single, string.quoted.double, string.quoted | #E6DB74 | — |
| source.ts string.quoted.single.ts, source.ts string.quoted.double.ts, source.ts string.template.ts, source.ts punctuation.definition.string.begin.ts, source.ts punctuation.definition.string.end.ts, source.ts punctuation.definition.template-expression.begin.ts, source.ts punctuation.definition.template-expression.end.ts, source.ts constant.language.boolean.ts | #FD971F | — |
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}!`;
}