VSCorzious
Publisher: VorziousThemes in package: 1
VSCorzious is a dark GUI and Editor colour theme for Visual Studio Code that mainly focuses on fast and easy recognition while still being easy on the eyes.
VSCorzious is a dark GUI and Editor colour theme for Visual Studio Code that mainly focuses on fast and easy recognition while still being easy on the eyes.
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 |
|---|---|---|
| — | #92cef1 | — |
| comment, punctuation.definition.comment | #5a7690 | bold |
| string | #f1e367 | — |
| constant.numeric | #ac98d1 | — |
| constant.language | #20FBEB | — |
| constant.character, constant.other | #a478f7 | — |
| variable | #20FBEB | — |
| keyword | #e74c3c | — |
| storage | #ea6442 | — |
| storage.type | #ea6442 | — |
| entity.name.class | #20FBEB | underline |
| entity.other.inherited-class, keyword.control.flow.js | #20FBEB | underline |
| entity.name.function | #00ff04 | — |
| variable.parameter | #FD971F | — |
| variable.parameter.function | #FD971F | — |
| entity.name.tag, support.type.property-name.json, keyword.control.flow.js | #eb461d | — |
| entity.other.attribute-name, variable.language.this.js | #00ff04 | |
| support.function | #00ff04 | |
| support.constant | #00ff04 | |
| support.type, support.class | #1ABC9C | — |
| support.other.variable | #2980B9 | |
| invalid | #8cc8ec | |
| invalid.deprecated | #8cc8ec | — |
| meta.structure.dictionary.json string.quoted.double.json | #ffae00 | — |
| meta.property-name.dictionary.json | #e74c3c | — |
| meta.diff, meta.diff.header | #75715E | — |
| markup.deleted | #ea6442 | — |
| markup.inserted | #74ed78 | — |
| markup.changed | #f4cf77 | — |
| text.html.ruby source | — | — |
| text source | — | — |
| constant.numeric.line-number.find-in-files - match | #AE81FF | — |
| entity.name.filename.find-in-files | #E6DB74 | — |
| tag.decorator.js tag.decorator.js punctuation.definition.tag.js | #E6DB74 | — |
| punctuation.definition.array, punctuation.definition.structure | — | bold |
| punctuation.definition.string | #E6DB74 | — |
| source.js constant.other.object.key.js string.unquoted.label.js | #e74c3c | — |
| source.css entity.other.attribute-name | #2ecc71 | — |
| source.css, support.type, support.class | #ffffff | — |
| entity.name.selector | #e74c3c | — |
| variable.less, variable.ref.sass, variable.decl.sass | #f4cf77 | — |
| annotation.parameters.ts | #74ED78 | |
| annotation.function.name.ts, annotation.function.primitive.support.ts, annotation.entity.parameters.ts | #1ABC9C | |
| meta.object-literal.key, meta.object-literal.key entity.name.function | #ea6442 | — |
| markup.quote, markup.bold.markdown | #74ED78 | — |
| punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, punctuation.definition.metadata.markdown | #92cef1 | — |
| string.other.link.description.markdown, string.other.link.title.markdown | #1ABC9C | — |
| markup.list | #f4cf77 | — |
| fenced_code.block.language, punctuation.definition.markdown | #FD971F | — |
| markup.bold, markup.italic | #66D9EF | — |
| markup.inline.raw | #FD971F | |
| markup.heading.setext | #e74c3c | |
| markup.underline.link.image.markdown, markup.underline.link.markdown | #e74c3c | |
| markup.heading | #e74c3c |
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}!`;
}