Webstorm Ui Theme For vscode
Publisher: hylongThemes in package: 2
This is a theme similar to the WebStorm New UI Theme.
This is a theme similar to the WebStorm New UI Theme.
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 | #7A7E85 | — |
| comment.block.documentation | #67A37C | |
| comment.block.documentation storage.type | #67A37C | |
| source.css.scss comment | #b9954e | |
| keyword, keyword.operator.new, keyword.operator.expression, storage, storage.type, support.type, constant.language, variable.language.this, variable.key.dotenv, entity.name.command, entity.name.tag.yaml, constant.character.escape, punctuation.definition.markdown, punctuation.definition.raw.markdown, punctuation.definition.bold.markdown, punctuation.definition.italic.markdown, punctuation.definition.list.begin.markdown, punctuation.definition.quote.begin.markdown | #CF8E6D | |
| punctuation.definition.heading.markdown | #CF8E6D | italic |
| entity.name.type.module, entity.name.constant, variable.other.property, variable.other.object.property, variable.other.constant.property, variable.language, meta.object-literal.key, meta.definition.property, meta.definition.property entity.name.function, support.type.property-name.json, support.variable.property, support.type.object.module, fenced_code | #c77dbb | |
| variable.other.enummember | #BCBEC4 | — |
| markup.heading | #c77dbb | italic |
| keyword.control.at-rule.mixin.scss | #d0cfff | — |
| string, punctuation.definition.metadata.markdown, markup.inline.raw, markup.quote, punctuation.separator.key-value.html, source.css support.constant, keyword.other.unit, constant.other.character-class.set.regexp, constant.other.character-class.range.regexp, meta.at-rule.each keyword.control.operator, meta.attribute-selector, meta.tag.attributes keyword.operator.assignment | #6aab73 | — |
| constant.numeric, keyword.operator.quantifier.regexp, string.regexp punctuation.definition.string, string.regexp keyword.other, constant.language.boolean, constant.language.null, constant.language, support.type.builtin | #2AACB8 | — |
| support.class.component, entity.name.tag.template.html.vue, entity.name.tag.script.html.vue, entity.name.tag.style.html.vue, source.vue meta.tag.other.unrecognized.html.derivative entity.name.tag, source.vue meta.tag.custom.start.html entity.name.tag, source.vue meta.tag.custom.end.html entity.name.tag | #2FBAA3 | — |
| entity.name.type.parameter, meta.type.parameters entity.name.type, meta.type.infer entity.name.type | #507874 | — |
| meta.tag.attributes, meta.at-rule.for keyword.control.operator, variable.interpolation, entity.name.type, entity.name.function.tagged-template, constant.language.import-export-all, string variable, source.yaml string.unquoted, source.yaml constant.language.boolean, punctuation.accessor, keyword.operator, keyword.other.unit.percentage, keyword.other.back-reference.regexp, punctuation.definition.entity, punctuation.separator.key-value, punctuation.separator.list.comma.css, punctuation.definition.group.regexp, punctuation.definition.group.assertion.regexp, punctuation.definition.character-class.regexp, punctuation.definition.attribute-selector, punctuation.terminator, storage.type.function.arrow | #BCBEC4 | — |
| meta.parameters variable.parameter, punctuation.definition.template-expression | #C77DBB | |
| meta.property-list variable.css, entity.other.attribute-name, support.type.property-name, support.type.vendored.property-name | #bababa | — |
| variable.other, variable.other.readwrite, variable.other.readwrite.alias, variable.other.constant, variable.other.object | #a9b7c5 | — |
| variable.other.jsdoc, entity.name.type.instance.jsdoc | #C77DBB | — |
| meta.object.member entity.name.function, entity.name.function, entity.name.function.member | #56A8F5 | |
| string.other.link, constant.other.reference.link, punctuation.definition.link.title.begin.markdown, punctuation.definition.link.title.end.markdown, punctuation.definition.link.description.begin.markdown, punctuation.definition.link.description.end.markdown | #56A8F5 | underline |
| markup.underline.link | #56A8F5 | italic |
| constant.other.color.rgb-value, string.other.link.description.title.markdown | #56a8f5 | |
| variable.parameter.url.css, meta.property-value variable.parameter.url, meta.at-rule.namespace variable.parameter.url | #5c92ff | — |
| variable.scss | #6d9cbe | — |
| variable.parameter.misc.css, variable.parameter.keyframe-list.css, entity.name.tag, entity.other.attribute-name.id, entity.other.attribute-name.id punctuation.definition.entity, entity.other.attribute-name.class, entity.other.attribute-name.pseudo-class, entity.other.attribute-name.pseudo-element, entity.other.attribute-name.scss, entity.other.attribute-name.css, entity.other.attribute-name.attribute.scss, entity.other.attribute-name.parent-selector-suffix punctuation.definition.entity, entity.other.attribute-name.placeholder.css, entity.other.attribute-name.placeholder.css punctuation.definition.entity, entity.other.keyframe-offset, punctuation.definition.tag, storage.type.annotation, meta.at-rule.media keyword.operator, meta.at-rule.media keyword.control.operator, meta.attribute-selector string.unquoted.attribute-value, meta.property-value variable.argument.css, constant.other.scss, support.constant.parity.css, source.css entity.name.function, source.css support.type.map.key, source.css support.constant.language-range, source.css support.function | #d5b778 | — |
| punctuation.decorator | #BCBEC4 | — |
| meta.decorator entity.name.function, constant.other.character-class.regexp | #b3ae60 | — |
| invalid | #f75464 | — |
| markup.italic | — | italic |
| markup.bold | — | bold |
| markup.strikethrough | — | strikethrough |
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}!`;
}