#Vlad
Publisher: 0x416C65Themes in package: 2
This represents a unique adaptation of Dracula's authentic theme, tweaked to exude a darker ambiance.
This represents a unique adaptation of Dracula's authentic theme, tweaked to exude a darker ambiance.
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, string.comment | #3f3f3fff | — |
| constant.numeric.css, entity.name.filename.find-in-files, keyword.operator.other.elixir, markup.changed, markup.inserted, markup.normal, markup.normal.markdown, source.elixir entity.name.function, string.template.js, string, support.constant.css, support.constant.less, support.constant.sass, support.constant.scss, unit.css, unit.less, unit.sass, unit.scss, variable.other.constant.elixir, variable.other.constant.elixir | #c19260ff | — |
| markup.deleted, meta.separator.markdown, punctuation.definition.template-expression.begin.js,punctuation.definition.template-expression.end.js,punctuation.definition.template-expression.begin.ts,punctuation.definition.template-expression.end.ts, support.dictionary.json, variable.readwrite.other.block, variable.readwrite | #af6784ff | — |
| entity.name.function-call, entity.name.variable, entity.name.variable.local, keyword.operator.assignment.python, keyword.other.base, keyword.other.this, meta.export variable.other.readwrite, meta.function-call.js, meta.import variable.other.readwrite, meta.object-literal.key, meta.object-literal.key.js, meta.paragraph.markdown, meta.tag.attributes.js, meta.template.expression.js, support.variable, support.variable.UnityEngine, variable.language.base, variable.object.property, variable.other.constant.property, variable.other.object.property, variable.other.property | #c1c1c1ff | — |
| constant.character, constant.language, constant.numeric.css, constant.numeric, constant.other, keyword.control.svelte, markup.underline.link.markdown, string.embedded.begin, string.embedded.end, support.constant, variable.language.this, variable.language, variable.object.constant, variable.other.alias, variable.other.constant, variable.other.object, variable.other.readwrite, variable.parameter | #9397c2ff | — |
| entity.name.function, entity.other.attribute-name.class.css, entity.other.attribute-name.id.css, entity.other.attribute-name, entity.other.inherited-class, function.css, function.less, function.sass, function.scss, function.support.builtin, function.support.core, markup.quote.markdown, meta.function-call.arguments.python, meta.function-call.generic.python, meta.function-call.python, meta.function-call.python, punctuation.definition.heading.markdown, punctuation.section.property-list.begin.bracket.curly.css, string.embedded, support.function | #77a977ff | — |
| constant.numeric.less, constant.numeric.sass, constant.numeric.scss, keyword.operator.constructor, parameter.variable.function.elixir, variable.css.string, variable.less.string, variable.sass.string, variable.scss.string | #e67b49ff | — |
| constant.character.escape, entity.name.tag.class.js, entity.name.tag.class.jsx, entity.name.tag.class, entity.name.tag.css, entity.name.tag.id, entity.name.tag, fenced_code.block.language.markdown, keyword.control, keyword.operator.logical, keyword.operator, keyword.other.unit.em.css, keyword.other.unit.percentage.css, keyword.other.unit.px.css, keyword.other.unit.rem.css, keyword, punctuation.accessor.optional, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end, punctuation.separator.key-value, storage.type, storage, variable.less | #c273baff | — |
| constant.numeric.line-number.find-in-files - match, constant.other.symbol.elixir, entity.name.class, entity.name.module, entity.name.type, markup.inline.raw.string.markdown, markup.raw.block.markdown, markup.raw.inline.markdown, meta.diff.header, meta.diff, source.elixir variable.other.readwrite.module.elixir punctuation.definition.variable.elixir, source.elixir variable.other.readwrite.module.elixir, source.elixir.punctuation.binary.elixir, source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json, storage.identifier, string.detected-link, string.other.link.title.markdown, support.class, support.other.variable, support.type.property-name.css, support.type.property-name.less, support.type.property-name.sass, support.type.property-name.scss, support.type, variable.other.block | #69cabdff | — |
| invalid.deprecated, invalid, punctuation.definition.list_item.markdown | #c1c1c1ff | — |
| punctuation.definition.bold.markdown, punctuation.definition.normal.markdown | #c1c1c1ff | — |
| entity.name.section.markdown, markup.heading.markdown | #c19260ff | — |
| token.warn-token | #c29993ff | — |
| entity.name.class, entity.name.type.class, meta.implementation storage.type.objc, meta.interface-or-protocol storage.type.objc, source.groovy storage.type.def, storage, support.constant, support.function.magic, support.function, support.type.property-name, support.variable, variable.other.predefined | — | |
| comment, emphasis, entity.name.directive.restructuredtext, entity.other.inherited-class, keyword.expressions-and-types.swift, keyword.other.this, keyword.primitive-datatypes.swift, keyword.type.cs, markup.italic, markup.quote, meta.decorator variable.other.property, meta.decorator variable.other.readwrite, meta.protocol-list.objc, meta.return-type.objc, source.go storage.type, source.groovy storage.type, source.java storage.type, source.powershell entity.other.attribute-name, storage.class.std.rust, storage.type.attribute.swift, storage.type.c, storage.type.core.rust, storage.type.cs, storage.type.groovy, storage.type.objc, storage.type.ocaml, storage.type.php, string.comment, variable.language punctuation.definition.variable.php, variable.language, variable.other.readwrite.instance.ruby, variable.parameter.function.language.special | — | italic |
| keyword.control.new, keyword.operator.new, markup.bold, markup.heading, strong | — | bold |
| markup.underline | — | underline |
| invalid.deprecated, invalid, variable.other.alias.yaml | — | italic underline |
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}!`;
}