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 |
|---|---|---|
| — | #d6d6d6 | — |
| entity.other.attribute-name | #cc7832 | — |
| comment | #797979 | |
| keyword, storage | #CC7833 | |
| storage | #a1617a | |
| entity.name.function, keyword.other.name-of-parameter.objc | #FFC66D | |
| entity.name | #FFFFFF | — |
| constant.numeric | #b4c973 | |
| variable.language, variable.other | #D0D0FF | |
| constant | #6D9CBE | |
| variable.other.constant | #c45837 | — |
| constant.language | #6c99bb | |
| string | #b4c973 | |
| support.function | #c45837 | |
| support.type | #6c99bb | — |
| support.constant | #b4c973 | — |
| meta.tag, declaration.tag, entity.name.tag | #E8BF6A | |
| invalid | #FFFFFF | — |
| constant.character.escaped, constant.character.escape, string source, string source.ruby | #a1617a | |
| markup.inserted | #E6E1DC | — |
| markup.deleted | #E6E1DC | — |
| meta.diff.header, meta.separator.diff, meta.diff.index, meta.diff.range | — | — |
| keyword.other.unit | #b4c973 | — |
| entity.other.attribute-name.id.css | #cc7732 | — |
| entity.other.attribute-name.class | #cc7732 | — |
| entity.other.less.mixin | #a1617a | — |
| variable.declaration.less | #cc7732 | — |
| keyword.control.html.elements | #e5b567 | — |
| meta.attribute-selector.css | #cc7732 | — |
| keyword.control.at-rule.css.sass | #a1617a | — |
| markup.deleted.git_gutter | #90516b | — |
| markup.inserted.git_gutter | #b4c973 | — |
| markup.changed.git_gutter | #cc7732 | — |
| markup.ignored.git_gutter | #999999 | — |
| markup.untracked.git_gutter | #cccccc | — |
| sublimelinter.mark.warning | #e5b567 | — |
| sublimelinter.mark.error | #c45330 | — |
| sublimelinter.gutter-mark | #FFFFFF | — |
Full workbench mockup using this variant's colors and tokenColors.
Loading...
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| — | #BBCF54 | — |
| comment | #707180 | — |
| string | #B4C757 | — |
| constant.numeric | #E7E7E7 | — |
| constant.language | #E7E7E7 | — |
| constant.character, constant.other | #A2BA43 | — |
| variable | #9EC9E3 | |
| keyword | #DB7C6D | — |
| storage | #DBBD46 | |
| storage.type | #A3CBE3 | italic |
| entity.name.class | #C77E77 | — |
| entity.other.inherited-class | #A3CBE3 | italic |
| entity.name.function | #E8A64B | |
| variable.parameter | #E7E7E7 | italic |
| entity.name.tag | #E7E7E7 | |
| entity.other.attribute-name | #E8A64B | |
| support.function | #D49E52 | |
| support.constant | #DB7C6D | |
| support.type, support.class | #E7E7E7 | italic |
| support.other.variable | — | |
| invalid | #F8F8F0 | |
| invalid.deprecated | #F8F8F0 | — |
Full workbench mockup using this variant's colors and tokenColors.
Loading...
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| — | #FFFFFF | — |
| text | #FFFFFF | — |
| source | #FFFFFF | — |
| comment | #9933CC | — |
| constant | #3387CC | — |
| keyword | #CC7833 | |
| meta.preprocessor.c | #D0D0FF | |
| keyword.control.import | — | |
| entity.name.function | — | |
| variable.parameter | — | italic |
| source comment.block | #FFFFFF | — |
| string | #66CC33 | — |
| string constant.character.escape | #AAAAAA | — |
| string.interpolated | #000000 | — |
| string.regexp | #CCCC33 | — |
| string.literal | #CCCC33 | — |
| string.interpolated constant.character.escape | #555555 | — |
| entity.name.type | — | underline |
| entity.other.inherited-class | — | italic underline |
| entity.name.tag | — | underline |
| entity.other.attribute-name | — | |
| support.function | #C83730 |
Full workbench mockup using this variant's colors and tokenColors.
Loading...
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| — | #FEC328 | — |
| comment | #947114 | |
| keyword, storage | #C38B16 | |
| constant.numeric | #FDCC5B | |
| constant | #FDCC5B | |
| string | #FDCC5B | |
| invalid | #FFFFFF | — |
| meta.diff.header, meta.separator.diff, meta.diff.index, meta.diff.range | — | — |
| markup.deleted | #F92672 | — |
| markup.inserted | #A6E22E | — |
| markup.changed | #967EFB | — |
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}!`;
}