The Best Themes for programmers
Publisher: Estevam SouzaThemes in package: 127
🎨🚀 A never seen collection of 165 hand crafted themes no where to be found on Internet 💻
🎨🚀 A never seen collection of 165 hand crafted themes no where to be found on Internet 💻
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 |
|---|---|---|
| keyword.operator.new, keyword.operator.logical | #ba8ef7 | — |
| comment | #707a84 | — |
| comment.line.shebang | #ff8ad1 | — |
| variable, string constant.other.placeholder | #939da5 | — |
| invalid, invalid.illegal | #ff6a80 | — |
| keyword, storage.type, storage.modifier | #ba8ef7 | — |
| keyword.operator | #939da5 | — |
| keyword.control | #ba8ef7 | — |
| constant.language, variable.other.property | #ffa763 | — |
| punctuation.definition.template-expression, punctuation.definition.typeparameters, meta.template.expression | #939da5 | — |
| punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html | #939da5 | — |
| support.function.builtin | #89ddff | — |
| entity.name.tag, meta.tag.sgml, markup.deleted.git_gutter | #ff6a80 | — |
| support.class.component | #ba8ef7 | — |
| entity.name.function, meta.function-call, variable.function, support.function, keyword.other.special-method | #ffea6b | — |
| punctuation.definition.arguments, meta.function-call | #939da5 | — |
| punctuation.accessor.js, punctuation.parenthesis | #939da5 | — |
| variable.other | #939da5 | — |
| constant.numeric | #89ddff | — |
| support.constant, constant.character, constant.escape, keyword.other.unit, keyword.other, variable.parameter | #939da5 | — |
| support.variable.property | #ffa763 | — |
| string, markup.heading, markup.inserted.git_gutter, string.unquoted.label.js | #5bec95 | — |
| meta.return.type | #ffea6b | — |
| support.type | #939da5 | — |
| keyword.other.unit.px.css, support.constant.color.w3c-standard-color-name.css, keyword.other.unit.s.css, support.constant.property-value.css, meta.property-value.css | #ffa763 | — |
| source.css support.type.property-name, source.sass support.type.property-name, source.scss support.type.property-name, source.less support.type.property-name, source.stylus support.type.property-name, source.postcss support.type.property-name | #939da5 | — |
| entity.name.module.js, variable.import.parameter.js, variable.other.class.js | #939da5 | — |
| variable.language | #939da5 | — |
| entity.name.method.js | #939da5 | — |
| meta.class-method.js entity.name.function.js, variable.function.constructor | #ffea6b | — |
| storage.type.function.arrow | #939da5 | — |
| support.type, support.type.primitive, support.type.sys-types | #89ddff | — |
| entity.other.attribute-name | #ffa763 | — |
| entity.other.attribute-name.html, entity.other.attribute-name | #ffa763 | — |
| entity.other.attribute-name.class | #ffa763 | — |
| entity.other.attribute-name.id.css | #ff8ad1 | — |
| markup.inserted | #C3E88D | — |
| markup.deleted | #ff6a80 | — |
| markup.changed | #C792EA | — |
| string.regexp | #56adb7 | — |
| constant.character.escape | #89ddff | — |
| *url*, *link*, *uri* | — | underline |
| tag.decorator.js, tag.decorator.js punctuation.definition.tag.js | #89ddff | — |
| source.js constant.other.object.key.js string.unquoted.label.js | #b15e7c | — |
| source.json meta.structure.dictionary.json support.type.property-name.json | #ba8ef7 | — |
| text.html.markdown, punctuation.definition.list_item.markdown | #939da5 | — |
| markdown.heading, markup.heading | markup.heading entity.name, markup.heading.markdown punctuation.definition.heading.markdown | #5bec95 | — |
| markup.bold, markup.bold string | #ba8ef7 | bold |
| markup.bold markup.italic, markup.italic markup.bold, markup.quote markup.bold, markup.bold markup.italic string, markup.italic markup.bold string, markup.quote markup.bold string | #ba8ef7 | bold |
| markup.underline | #939da5 | underline |
| markup.quote punctuation.definition.blockquote.markdown | #939da5 | — |
| string.other.link.title.markdown | #89ddff | — |
| string.other.link.description.title.markdown | #ba8ef7 | — |
| constant.other.reference.link.markdown | #ffea6b | — |
| markup.raw.block | #ba8ef7 | — |
| markup.raw.block.fenced.markdown | #00000050 | — |
| punctuation.definition.fenced.markdown | #00000050 | — |
| markup.raw.block.fenced.markdown, variable.language.fenced.markdown, punctuation.section.class.end | #939da5 | — |
| variable.language.fenced.markdown | #939da5 | — |
| meta.separator | #8796b0 | bold |
| markup.table | #939da5 | — |
| entity.name.type.class | #ff6a80 | — |
| support.type.object.module | #ba8ef7 | — |
| constant.language.boolean | #ba8ef7 | — |
| entity.name.type | #89ddff | — |
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}!`;
}