Jellybeans
Publisher: DasFranck HochstaetterThemes in package: 1
jellybeans.vim finally on Visual Studio Code!
jellybeans.vim finally on Visual Studio Code!
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 | #888888 | — |
| string | #99ad6a | — |
| punctuation.definition.string.begin, punctuation.definition.string.end | #556633 | — |
| constant.other | #8197BF | — |
| constant.character | #4d7e69 | — |
| string.regexp | #dd0093 | — |
| variable.parameter.function, variable.parameter.function-call, entity.other.attribute-name | #ffb964 | — |
| entity.name.type | #cc9d3b | — |
| constant.numeric, constant.language | #cf6a4c | — |
| entity.name.function, variable.other.jinja.filter, variable.other.jinja.attribute | #fad07a | — |
| keyword.control, keyword.operator.logical, keyword.operator.new, punctuation.separator.period.python, entity.name.tag.html | #8197BF | — |
| storage | #8197BF | — |
| diff.inserted, markup.inserted | #558f1f | — |
| diff.deleted, markup.deleted | #a1000d | — |
| meta.diff.header | #FFFFFF | — |
| meta.diff.range | #888888 | italic |
| markup.changed | #967efb | — |
| constant.character.escaped, constant.character.escape, string source, string source.ruby | #b4c973 | — |
| entity.other.jinja.delimiter, keyword.control.jinja | #8fbfdc | — |
| keyword.control.import, punctuation.definition.decorator, support.variable.magic | #8fbfdc | — |
| punctuation.definition.dictionary.begin.json, punctuation.definition.dictionary.end.json, punctuation.definition.array.begin.json, punctuation.definition.array.end.json, punctuation.definition.list.begin.markdown, punctuation.definition.list.end.markdown | #8fbfdc | — |
| string.json.comments | #8197BF | — |
| entity.name.tag.html, punctuation.definition.tag | #8197BF | — |
| invalid | #F44747 | — |
| entity.name.tag.namespace | #99AD6A | — |
| entity.name.tag.localname | #8197BF | — |
| punctuation.definition.heading.markdown | #65737E | bold |
| entity.name.section, markup.heading | #99ad6a | bold |
| markup.italic | — | italic |
| markup.bold, markup.bold string | — | 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 | — | italic bold |
| markup.underline | — | underline |
| markup.quote punctuation.definition.blockquote.markdown | #65737E | — |
| markup.quote | — | italic |
| string.other.link.title.markdown | #82AAFF | — |
| string.other.link.description.title.markdown, markup.underline.link.markdown | #C792EA | — |
| constant.other.reference.link.markdown | #FFCB6B | — |
| fenced_code.block.language | #65737E | — |
| meta.separator | #65737E | bold |
| markup.table | #EEFFFF | — |
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}!`;
}