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, string.quoted.docstring.multi.python | #546A90 | italic |
| string | #FFFFFF | — |
| constant.numeric | #FFD400 | — |
| constant.language | #DF85FF | — |
| constant.character, constant.other | #DF85FF | — |
| variable | — | |
| keyword | #FF2AFC | — |
| storage | #42C6FF | |
| storage.type | #FF2E97 | |
| entity.name.class, entity.name.type.class | #A875FF | italic |
| entity.other.inherited-class, meta.other.inherited-class.php | #FFD400 | italic |
| entity.name.function - meta.function-call | #FF9B50 | |
| variable.parameter | #FFFFFF | |
| entity.name.tag | #42C6FF | |
| entity.other.attribute-name | #EE62EC | |
| support.function | #FF9B50 | |
| support.constant | #A3D6E0 | |
| support.type, support.class | #42C6FF | italic |
| support.other.variable | — | |
| variable.language.this.js, variable.language.super.js, variable.language.this.php | #42C6FF | italic |
| invalid | #CF433E | |
| invalid.deprecated | #CF433E | — |
| meta.diff, meta.diff.header | #456B7C | — |
| markup.deleted | #E61F44 | — |
| markup.inserted | #A6E22E | — |
| markup.changed | #F7B83D | — |
| constant.numeric.line-number.find-in-files - match | #8FBE00A0 | — |
| entity.name.filename.find-in-files | #E6DB74 | — |
| keyword.other | #6494A9 | — |
| meta.property-value, support.constant.property-value, constant.other.color | #CCCCCC | — |
| meta.structure.dictionary.json string.quoted.double.json | #FF0081 | — |
| support.type.property-name.json | #D86BFF | |
| meta.structure.dictionary.value.json string.quoted.double.json | #F8F8F2 | — |
| meta.property-name support.type.property-name | — | |
| meta.property-value punctuation.separator.key-value | #B6CED8 | — |
| keyword.other.use, keyword.other.function.use, keyword.other.namespace, keyword.other.new, keyword.other.special-method, keyword.other.unit, keyword.other.use-as | #FF2AFC | — |
| support.other.namespace.php | #F8F8F2 | — |
| meta.use | #1EA8FC | |
| variable.other | #FFFFFF | |
| keyword.other.phpdoc.php | #A875FF | |
| keyword.other.type.php, meta.other.type.phpdoc.php | #7984D1 | — |
| variable.parameter.function.coffee | #AAAAAA | |
| entity.name.section.markdown | #5DCDFD | — |
| punctuation.definition.heading.markdown | #1EA8FC | — |
| markup.raw.inline.markdown | #CCCCCC | — |
| punctuation.definition.bold.markdown, punctuation.definition.italic.markdown | #1EA8FC | — |
| punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown | #1EA8FC | — |
| punctuation.definition.metadata.markdown | #1EA8FC | — |
| markup.underline.link.markdown, markup.underline.link.image.markdown, meta.image.inline.markdown | #1EA8FC | |
| markup.bold.markdown, markup.italic.markdown | #1EA8FC | — |
| markup.italic.markdown | — | italic |
| markup.bold.markdown | — | bold |
| markup.raw.block.markdown | #664E4D | — |
| markup.deleted.git_gutter | #E61F44 | — |
| markup.inserted.git_gutter | #A7DA1E | — |
| markup.changed.git_gutter | #F7B83D | — |
| meta.template.expression | #B6CED8 | — |
| entity.name.function | #00FFF1 | — |
| support.function | #00FFF1 | — |
| 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 | — |
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}!`;
}