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 |
|---|---|---|
| comment, punctuation.definition.comment | #6C7986 | — |
| punctuation.definition.string, string | #FC6A5D | — |
| constant.numeric, keyword.other.unit, support.constant | #D0BF69 | — |
| constant.language, entity.name.tag, keyword, storage.modifier, storage.type, support.type.primitive, variable.language | #FF7AB2 | bold |
| entity.name.function.macro, keyword.control.directive, keyword.control.preprocessor, punctuation.definition.preprocessor | #FFA14F | — |
| markup.underline.link | #6699FF | — |
| entity.name.type.class.std.rust, storage.type.cs, support.type, meta.object-literal.key | #ACF2E4 | — |
| meta.object-literal.key | #72BFAE | — |
| punctuation.definition.variable, punctuation.support.type.property-name, storage.modifier.lifetime, support.type.property-name | #67B7A4 | — |
| meta.function-call, source.css | #C08AFF | — |
| meta.definition.function, meta.definition.method, meta.method.declaration | #41A1C0 | — |
| constant.language.boolean.false.ts, constant.language.boolean.true.ts, meta.object.member.ts, meta.objectliteral.ts | #D6C455 | — |
| entity.name.type, entity.other.inherited-class | #5DD8FF | — |
| support.class.error.ts, meta.class.ts, source.ts | #5DD8FF | — |
| keyword.operator | #A167E6 | — |
| meta.return.type, meta.function, entity.name.function, support.type.primitive, meta.field.declaration, meta.interface | #D0A8FF | — |
| entity.name.function.definition, entity.name.function.go, entity.name.type.namespace, entity.name.variable, variable.other.assignment | #67B7A4 | — |
| fenced_code.block.language, punctuation.definition.bold.markdown, punctuation.definition.heading.markdown, punctuation.definition.italic.markdown, punctuation.definition.list.begin.markdown, punctuation.definition.markdown, punctuation.definition.metadata.markdown, punctuation.definition.quote.begin.markdown, punctuation.definition.raw.markdown, punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown | #72BFAE | — |
| string.other.link.title.markdown | #DFDFE0 | — |
| entity.name.section | #DFDFE0 | bold |
| variable.other.property | #C08AFF | — |
| markup.bold | #DFDFE0 | bold |
| markup.italic | #DFDFE0 | italic |
| punctuation | #DFDFE0 | — |
| punctuation.decorator, meta.brace.round | #FFFFFF | — |
| entity.other.attribute-name.js | #D0A8FF | — |
| meta.tag.without-attributes.js, meta.jsx.children.js | #FFFFFF | — |
| punctuation.terminator.statement | #FFFFFF | — |
| punctuation.accessor.optional | #A167E6 | — |
| token.info-token | #6796E6 | — |
| token.warn-token | #CD9731 | — |
| token.error-token | #F44747 | — |
| token.debug-token | #B267E6 | — |
| comment, variable.language, variable.parameter, entity.other.attribute-name, keyword, markup.underline.link, storage.modifier, storage.type, string.url, variable.language.super, variable.language.this | — | |
| keyword.operator, keyword.other.type, storage.modifier.import, storage.modifier.package, storage.type.built-in, storage.type.function.arrow, storage.type.generic, storage.type.java, storage.type.primitive | — | |
| variable | #48B7DB | — |
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}!`;
}