The Great Dreamer
Publisher: Arthur AndradeThemes in package: 2
A Dark Theme for the Dreamers out there - Accents of Neon colors with high Cyberpunk influence
A Dark Theme for the Dreamers out there - Accents of Neon colors with high Cyberpunk influence
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, punctuation.definition.comment | #555C77 | — |
| variable.css, variable.argument.css, entity.other.attribute-name.pseudo-class.css | #8088FF | — |
| keyword, keyword.control, storage, storage.type.annotation, storage.type.primitive, meta.selector, markup.changed, markup.link, source.cs keyword.operator, source.go storage.type.string, source.java keyword.operator.instanceof, source.js keyword.operator.js, source.js keyword.operator.delete, source.js keyword.operator.in, source.js keyword.operator.of, source.js keyword.operator.instanceof, source.js keyword.operator.new, source.js keyword.operator.typeof, source.js keyword.operator.void, source.python keyword.operator.logical.python, support.type.object.module.js, keyword.operator.accessor.js | #7E7EDD | — |
| punctuation.definition.italic, markup.italic | #7E7EDD | italic |
| entity.name.type, string.regexp source.ruby.embedded, support.class, entity.name.class, entity.name.type.class, source.java storage.modifier.import, source.java storage.type, support.type.primitive.ts, support.type.builtin.ts, entity.name.type.ts, entity.other.attribute-name.class.css | #A571F4 | — |
| punctuation.definition.bold | #A571F4 | bold |
| keyword.other.unit, constant, constant.variable, constant.numeric, meta.link, entity.other.attribute-name, markup.quote, source.python variable.parameter, entity.name.function, support.function | #DDA2F6 | — |
| markup.bold | #DDA2F6 | bold |
| support.function.misc.css, constant.language.json.comments | #FF79C6 | — |
| variable.language.this, storage.modifier.ts, entity.name.tag.css, source.ruby keyword.other.special-method.ruby | #C74EB7 | — |
| entity.other.inherited-class, string, markup.inserted, markup.raw, source.json meta.structure.dictionary.json value.json string.quoted.json, source.json meta.structure.array.json value.json string.quoted.json, source.json meta.structure.dictionary.json value.json string.quoted.json punctuation, source.json meta.structure.array.json value.json string.quoted.json punctuation, entity.other.attribute-name.id.css | #9AEFEA | — |
| constant.character.escape, constant.other.color, constant.other.symbol, string.regexp, source.ruby constant.other.symbol punctuation, source.json meta.structure.dictionary.json constant.language.json, source.json meta.structure.array.json constant.language.json, entity.name.tag.html, entity.name.tag.tsx, entity.name.tag.jsx, entity.name.tag.js.jsx, entity.name.tag.js, entity.name.tag.open.jsx, entity.name.tag.close.jsx, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, punctuation.definition.tag.begin.js.jsx, punctuation.definition.tag.begin.js, punctuation.definition.tag.end.js.jsx, punctuation.definition.tag.end.js, meta.tag.jsx, support.type, support.class.component.open.jsx | #93DDFB | — |
| variable.interpolation, punctuation.section.embedded | #4D8ACB | — |
| support.class.component.open.jsx, support.class.component.close.jsx, support.class.component.js.jsx | #b293fb | — |
| variable, entity.name.tag, meta.definition.variable, markup.deleted, markup.heading, source.ini keyword.other.definition.ini, source.java-properties meta.key-pair, source.json meta.structure.dictionary.json string.quoted.json, source.json meta.structure.dictionary.json string.quoted.json punctuation.string | #c7c7e4 | — |
| keyword.operator, storage.modifier.package, storage.modifier.import, variable.parameter, punctuation.definition.method-parameters, punctuation.definition.function-parameters, punctuation.definition.parameters, punctuation.definition.separator, punctuation.definition.separator, punctuation.definition.array, punctuation.section.method, punctuation.section.class, punctuation.section.inner-class, meta.method-call, meta.method, meta.class.body, meta.separator, meta.tag, meta.separator, none, source.java-properties meta.key-pair punctuation, source.css property-name.support, source.css property-value.support | #B9BED5 | — |
| keyword.other.special-method, punctuation.definition.heading, punctuation.definition.identity, support.function.any-method, entity.name.section, entity.other.attribute-name.id, meta.require, markup.heading punctuation.definition.heading, source.gfm link entity | #F5FAFF | — |
| underline | — | underline |
| invalid.deprecated | #523D14 | — |
| invalid.illegal | #FFFFFF | — |
| source.css property-name, source.css property-value | #7D839B | — |
| 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}!`;
}