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 |
|---|---|---|
| strong, markup.bold | — | bold |
| emphasis, markup.italic | — | italic |
| markup.underline | — | underline |
| comment, punctuation.definition.comment, string.quoted.docstring | #4D4E4F | italic |
| storage.type | #F3F99D | — |
| storage.type.primitive, support.type, entity.name.type, keyword.type, keyword.other.unit | #9AEDFE | — |
| string, meta.structure.dictionary.json string.quoted.double.json | #5AF78E | — |
| constant.language.boolean | #B76AFF | — |
| constant.numeric, support.constant | #F3F99D | — |
| constant.language.null | #FF5C57 | — |
| constant.language.undefined | #FF6AC1 | — |
| meta.function entity.name.function | #57C7FF | — |
| entity.name.function, meta.function-call, support.function, keyword.other.special-method, meta.require, variable.language.super, keyword.other.get, keyword.other.set | #57C7FF | — |
| variable, support.variable, support.class, support.constant, meta.definition.variable entity.name.function | #EFF0EB | — |
| variable.other.constant.property | #F3F99D | — |
| entity.name.type.class | #FF5C57 | — |
| entity.other.inherited-class entity.name.type.module | #FF5C57 | — |
| variable.object.property | #F3F99D | — |
| meta.definition.method entity.name.function | #F3F99D | — |
| keyword, modifier, storage.modifier, support.type.object, constant.language, variable.language.this, variable.language.special.self | #FF6AC1 | — |
| support.module, support.node | #FF5C57 | — |
| template.expression.begin, template.expression.end | #FF6AC1 | — |
| support.type.exception | #F3F99D | — |
| markup.inserted.diff, meta.diff.header.to-file | #5AF78E | — |
| markup.deleted.diff, meta.diff.header.from-file | #FF5C57 | — |
| source.cs meta.class.identifier storage.type | #FF5C57 | — |
| source.cs meta.method.identifier entity.name.function | #F3F99D | — |
| source.cs meta.method-call meta.method, source.cs entity.name.function | #57C7FF | — |
| source.cs storage.type | #F3F99D | — |
| source.cs meta.method.return-type | #9AEDFE | — |
| source.cs meta.preprocessor | #4D4E4F | — |
| source.cs entity.name.type.namespace | #EFF0EB | — |
| entity.other.attribute-name.class | #9AEDFE | — |
| entity.other.attribute-name.id | #9AEDFE | — |
| source.css entity.name.tag | #F3F99D | — |
| source.css support.type.property-name | #FF5C57 | — |
| meta.tag, punctuation.definition.tag | #EFF0EB | — |
| entity.name.tag | #FF5C57 | — |
| entity.other.attribute-name | #F3F99D | — |
| punctuation.section.embedded | #FF5C57 | — |
| keyword.other.definition.ini | #FF5C57 | — |
| entity.name.section.group-title.ini | #57C7FF | — |
| source.java storage.modifier.package, source.java storage.modifier.import | #EFF0EB | — |
| source.java storage.type.annotation | #FF5C57 | italic |
| source.java meta.method-call meta.method | #57C7FF | — |
| source.java meta.method-call meta.inner-class meta.method | #EFF0EB | — |
| source.java meta.method-call meta.inner-class meta.method meta.method-call meta.method | #57C7FF | — |
| source.java meta.definition.variable entity.name.function | #57C7FF | — |
| source.java constant.language | #5AF78E | — |
| source.js storage.modifier.async | #FF6AC1 | — |
| meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json | #FF5C57 | — |
| constant.language.json | #FF6AC1 | — |
| markup.heading | #57C7FF | — |
| text.html.markdown meta.link.inline, meta.link.reference, markup.underline.link.image | #FF5C57 | — |
| text.html.markdown markup.quote | #9AEDFE | — |
| text.html.markdown beginning.punctuation.definition.list | #F3F99D | — |
| text.html.markdown markup.inline.raw | #FF6AC1 | — |
| markup.italic | #FF5C57 | italic |
| markup.bold | #FF5C57 | bold |
| markup.bold markup.italic, markup.italic markup.bold | #FF5C57 | italic bold |
| source.python keyword.operator.arithmetic | #EFF0EB | — |
| source.python meta.function storage.type.function | #FF6AC1 | — |
| source.python meta.function-call.arguments | #EFF0EB | — |
| source.python meta.function entity.name.function.decorator | #FF5C57 | — |
| source.python constant.language | #5AF78E | — |
| entity.name.tag.yaml | #FF5C57 | — |
| meta.selectionset.graphql variable | #F3F99D | — |
| meta.selectionset.graphql meta.arguments variable | #EFF0EB | — |
| entity.name.fragment.graphql, variable.fragment.graphql | #9AEDFE | — |
| keyword.operator, keyword.operator.new, keyword.operator.expression, string, constant.other.placeholder, meta.embedded.assembly, storage.modifier, storage.type, storage.type.class.jsdoc, storage.type.function.jsdoc, storage.type.typedef.jsdoc, storage.type.variable.jsdoc, keyword.control, comment, comment.block, entity.other.attribute-name.html, variable, entity.name.function, entity.name.type, entity.name.class, entity.name.tag, entity.name.section, entity.name.selector, entity.name.method, entity.name.module, entity.name.scope-resolution, entity.name.variable | — | |
| token.info-token | #6796E6 | — |
| token.warn-token | #CD9731 | — |
| token.error-token | #F44747 | — |
| token.debug-token | #B267E6 | — |
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}!`;
}