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 |
|---|---|---|
| — | #24292eff | — |
| keyword.operator.accessor, meta.group.braces.round.function.arguments, meta.template.expression, meta.interpolation, markup.fenced_code meta.embedded.block | #24292eff | — |
| emphasis | — | italic |
| strong, markup.heading.markdown, markup.bold.markdown | — | bold |
| markup.italic.markdown | — | italic |
| meta.link.inline.markdown | #005cc5 | underline |
| comment, markup.fenced_code, markup.inline | #6a737d | — |
| string | #032f62 | — |
| constant.numeric, constant.language, variable.language.this, variable.other.class, variable.other.constant, meta.property-name, meta.property-value, support | #005cc5 | — |
| keyword, storage.modifier, storage.type, storage.control.clojure, entity.name.function.clojure, support.function.node, support.type.property-name.json, punctuation.separator.key-value, punctuation.definition.template-expression, punctuation.definition.interpolation, support.constant.property-value.css | #d73a49 | — |
| variable.parameter.function | #E27F2D | — |
| entity.name.type, entity.other.inherited-class, meta.function-call, meta.instance.constructor, entity.other.attribute-name, entity.name.function, constant.keyword.clojure | #6f42c1 | — |
| entity.name.tag, string.quoted, string.regexp, string.interpolated, string.template, keyword.other.template | #22863a | — |
| token.info-token | #316bcd | — |
| token.warn-token | #cd9731 | — |
| token.error-token, invalid | #cd3131 | — |
| token.debug-token | #800080 | — |
| markup.inserted | #22863a | — |
| markup.deleted | #d73a49 | — |
| markup.changed | #005cc5 | — |
| meta.diff.header | #6a737d | — |
| constant.numeric.css, support.function.misc.css, constant.other.color.rgb-value.hex.css, punctuation.section.function.begin.bracket.round.css, punctuation.section.function.end.bracket.round.css | #353535 | — |
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}!`;
}