Vitesse Theme WebStorm
Publisher: AnthonyJuThemes in package: 1
A theme that combines WebStorm and Vitesse
A theme that combines WebStorm and Vitesse
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, string.comment | #8a9b8d | — |
| delimiter.bracket, delimiter, invalid.illegal.character-not-allowed-here.html, keyword.operator.rest, keyword.operator.spread, keyword.operator.type.annotation, keyword.operator.relational, keyword.operator.assignment, keyword.operator.type, meta.brace, meta.tag.block.any.html, meta.tag.inline.any.html, meta.tag.structure.input.void.html, meta.type.annotation, meta.embedded.block.github-actions-expression, storage.type.function.arrow, meta.objectliteral.ts, punctuation, punctuation.definition.string.begin.html.vue, punctuation.definition.string.end.html.vue | #7f7f7f | — |
| constant, entity.name.constant, variable.language, meta.definition.variable | #e0a88e | — |
| entity, entity.name | #99bf7d | — |
| variable.parameter.function | #ffffff | — |
| entity.name.tag, tag.html | #5fb08d | — |
| entity.name.function | #99bf7d | — |
| keyword, storage.type.class.jsdoc, punctuation.definition.template-expression | #5fb08d | — |
| storage, storage.type, support.type.builtin, constant.language.undefined, constant.language.null, constant.language.import-export-all.ts | #e38e8e | — |
| text.html.derivative, storage.modifier.package, storage.modifier.import, storage.type.java | #ffffff | — |
| string, string punctuation.section.embedded source, attribute.value | #e1a195 | — |
| punctuation.definition.string | #e1a19577 | — |
| punctuation.support.type.property-name | #d1c17d77 | — |
| support | #d1c17d | — |
| property, meta.property-name, meta.object-literal.key, entity.name.tag.yaml, attribute.name | #d1c17d | — |
| entity.other.attribute-name, invalid.deprecated.entity.other.attribute-name.html | #d4b083 | — |
| variable, identifier | #d4b083 | — |
| support.type.primitive, entity.name.type | #76c1ac | — |
| namespace | #f4a1b2 | — |
| keyword.operator, keyword.operator.assignment.compound, meta.var.expr.ts | #e38e8e | — |
| invalid.broken | #fdaeb7 | italic |
| invalid.deprecated | #fdaeb7 | italic |
| invalid.illegal | #fdaeb7 | italic |
| invalid.unimplemented | #fdaeb7 | italic |
| carriage-return | #24292e | italic underline |
| message.error | #fdaeb7 | — |
| string variable | #e1a195 | — |
| source.regexp, string.regexp | #dc8867 | — |
| string.regexp.character-class, string.regexp constant.character.escape, string.regexp source.ruby.embedded, string.regexp string.regexp.arbitrary-repitition | #e1a195 | — |
| string.regexp constant.character.escape | #ffdf8f | — |
| support.constant | #e0a88e | — |
| keyword.operator.quantifier.regexp, constant.numeric, number | #5fb0a9 | — |
| keyword.other.unit | #e38e8e | — |
| constant.language.boolean, constant.language | #5fb08d | — |
| meta.module-reference | #3474f0 | — |
| punctuation.definition.list.begin.markdown | #edaf84 | — |
| markup.heading, markup.heading entity.name | #3474f0 | bold |
| markup.quote | #76b1c1 | — |
| markup.italic | #ffffff | italic |
| markup.bold | #ffffff | bold |
| markup.raw | #3474f0 | — |
| markup.deleted, meta.diff.header.from-file, punctuation.definition.deleted | #fdaeb7 | — |
| markup.inserted, meta.diff.header.to-file, punctuation.definition.inserted | #85e89d | — |
| markup.changed, punctuation.definition.changed | #ffab70 | — |
| markup.ignored, markup.untracked | #2f363d | — |
| meta.diff.range | #b392f0 | bold |
| meta.diff.header | #79b8ff | — |
| meta.separator | #79b8ff | bold |
| meta.output | #79b8ff | — |
| brackethighlighter.tag, brackethighlighter.curly, brackethighlighter.round, brackethighlighter.square, brackethighlighter.angle, brackethighlighter.quote | #d1d5da | — |
| brackethighlighter.unmatched | #fdaeb7 | — |
| constant.other.reference.link, string.other.link, punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown | #e1a195 | — |
| markup.underline.link.markdown, markup.underline.link.image.markdown | #ffffff | underline |
| type.identifier, constant.other.character-class.regexp | #8189c3 | — |
| entity.other.attribute-name.html.vue | #99bf7d | — |
| invalid.illegal.unrecognized-tag.html | — | normal |
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}!`;
}