MultiTheme
Publisher: Arturo ArevaloThemes in package: 336
A collection of themes ported from TextMate
A collection of themes ported from TextMate
Full workbench mockup using this variant's colors and tokenColors.
Loading...
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| — | #111111 | — |
| comment | #cc1c00 | italic |
| string | #ffffff | — |
| string.quoted.single | #eeffcc | — |
| constant.numeric | #009092 | — |
| constant.language | #692dc9 | — |
| constant.character, constant.other | #4d00c9 | — |
| variable | #008000 | |
| keyword | #2626bf | bold |
| storage | #E8341C | |
| storage.type | #1fd6ff | italic |
| entity.name.class | #8E69C9 | underline |
| entity.other.inherited-class | #8E69C9 | italic underline |
| entity.name.function | #f2d42c | |
| variable.parameter | #8E69C9 | italic |
| entity.name.tag | #1c1ce8 | bold |
| entity.other.attribute-name | #3874a0 | |
| support.function | #2c5668 | |
| support.constant | #8E69C9 | |
| support.type, support.class | #8E69C9 | italic |
| support.other.variable | #adfcaf | |
| invalid | #F8F8F0 | |
| invalid.deprecated | #F8F8F0 | — |
| meta.structure.dictionary.json string.quoted.double.json | #ffffff | — |
| meta.diff, meta.diff.header | #75715E | — |
| markup.deleted | #00A8C6 | — |
| markup.inserted | #A6E22E | — |
| markup.changed | #E6DB74 | — |
| constant.numeric.line-number.find-in-files - match | #8FBE00A0 | — |
| entity.name.filename.find-in-files | #E6DB74 | — |
Full workbench mockup using this variant's colors and tokenColors.
Loading...
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| — | #FFF2CF | — |
| comment | #4A4A4A | italic |
| constant | #074C76 | — |
| entity | #dc5f37 | — |
| invalid | #FFF2CF | — |
| keyword | #B96600 | — |
| markup | #8B3C23 | — |
| storage | #8B5C23 | — |
| string | #DC9237 | — |
| support | #DCBC63 | — |
| variable | #B92D00 | — |
| entity.name.type | #5A96BA | — |
| entity.other.inherited-class | #5A96BA | italic |
| constant.numeric | #074C76 | — |
| constant.language | #074C76 | — |
| constant.character, constant.other | #074C76 | — |
| invalid.deprecated | #FFF2CF | — |
| entity.name.function | #B98800 | — |
| variable.parameter | #B92D00 | italic |
| support.class | #5A96BA | — |
| support.constant | #074C76 | — |
| support.function | #B98800 | — |
| support.variable | #B92D00 | — |
| storage.type | #8B5C23 | — |
| entity.name.tag | #8B3C23 | bold |
| entity.other.attribute-name | #DC5F37 | italic |
| constant.numeric.line-number.find-in-files - match | #02314D | italic |
| entity.name.tag.yaml | — | none |
| punctuation.definition.string.begin.json - meta.structure.dictionary.value.json, punctuation.definition.string.end.json - meta.structure.dictionary.value.json | #FFF2CF | — |
| meta.structure.dictionary.value.json string.quoted.double.json | #DC9237 | — |
| meta.structure.dictionary.json string.quoted.double.json | #8B3C23 | — |
Full workbench mockup using this variant's colors and tokenColors.
Loading...
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| — | #C0B6A8 | — |
| comment | #AEAEAE | |
| string | #B9A185 | |
| constant.numeric | #B9A185 | — |
| keyword | #A1877E | |
| Entity | #B8ADA0 | — |
| storage | #A1877E | — |
| constant | #A1877E | — |
| invalid | #F3D651 | — |
| entity.name | #B9A185 | bold |
| variable | #8D776E | — |
Full workbench mockup using this variant's colors and tokenColors.
Loading...
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| — | #CFF3FF | — |
| comment | #9191919E | — |
| string | #00F0C0 | — |
| constant.numeric | #00F0C0 | — |
| constant.language | #00F0C0 | — |
| constant.character, constant.other | #00F0C0 | — |
| variable | #CFF3FF | |
| keyword | #FF5C5C | — |
| storage | #FF9494 | |
| storage.type | #69C8FF | — |
| entity.name.class | #FF9494 | — |
| entity.other.inherited-class | #FF9494 | — |
| entity.name.function | #00FFCC | |
| variable.parameter | #FFE852 | — |
| entity.name.tag | #FF7A7A | |
| entity.other.attribute-name | #38FFF5 | |
| support.function | #00F0C0 | |
| support.constant | #FFE852 | |
| support.type, support.class | #FF9494 | — |
| support.other.variable | #FF9494 | |
| invalid | #F8F8F0 | |
| invalid.deprecated | #F8F8F0 | — |
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}!`;
}
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}!`;
}