Xcode 10
Publisher: Ashish ShekarThemes in package: 2
Xcode 10 theme port with a subliminal vibe. Also new coffee version is available.
Xcode 10 theme port with a subliminal vibe. Also new coffee version is available.
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 |
|---|---|---|
| punctuation.definition.tag | #83A598 | |
| punctuation.definition.entity | #D3869B | |
| constant | #D4B483 | |
| constant.character.escape | #B8BB26 | |
| constant.other | #FAF5DAD6 | |
| entity | #F0E4AD | — |
| keyword.operator.comparison, keyword.operator, keyword.operator.symbolic, keyword.operator.string, keyword.operator.assignment, keyword.operator.arithmetic, keyword.operator.class, keyword.operator.key, keyword.operator.logical | #CCA585 | |
| keyword, keyword.operator.new, keyword.other, keyword.control | #F59489 | |
| storage | #86D4CF | italic |
| string -string.unquoted.old-plist -string.unquoted.heredoc, string.unquoted.heredoc string | #B8BB26 | |
| comment | #928374 | italic |
| string.regexp constant.character.escape | #B8BB26 | — |
| support | #C8999C | |
| variable | #FAF5DAD6 | |
| variable.language | #FAF5DAD6 | |
| meta.function-call | #FAF5DAD6 | — |
| invalid | #F0F0F0 | — |
| text source, string.unquoted.heredoc, source source | #FAF5DAD6 | |
| string.quoted source | #B8BB26 | |
| string | #85BF9C | — |
| support.constant | #FABD2F | |
| support.class | #8EC07C | |
| entity.name.tag | #D3869B | — |
| meta.tag, meta.tag entity | #8EC07C | — |
| constant.other.color.rgb-value | #83A598 | — |
| meta.selector.css entity.name.tag | #FA5C4B | — |
| meta.selector.css, entity.other.attribute-name.id | #B8BB26 | — |
| meta.selector.css entity.other.attribute-name.class | #B8BB26 | — |
| support.type.property-name.css | #8EC07C | — |
| meta.preprocessor.at-rule keyword.control.at-rule | #FABD2F | — |
| meta.property-value constant | #FABD2F | — |
| meta.property-value support.constant.named-color.css | #FE8019 | — |
| meta.constructor.argument.css | #FABD2F | — |
| meta.diff, meta.diff.header | #83A598 | — |
| markup.deleted | #FA5C4B | — |
| markup.changed | #FABD2F | — |
| markup.inserted | #8EC07C | — |
| markup.bold | — | bold |
| markup.italic | — | italic |
| markup.heading | #8EC07C | — |
| entity.name.type.class.php | #8EC07C | — |
| keyword.other.phpdoc | #928374 | |
| constant.numeric.css, keyword.other.unit.css | #D3869B | — |
| punctuation.definition.entity.css | #B8BB26 | — |
| variable.language.js | #FABD2F | — |
| string.unquoted.label.js | #FDF4C1 | — |
| constant.other.table-name.sql | #B8BB26 | |
| constant.other.database-name.sql | #B8BB26 | |
| storage.type.dired.item.directory, dired.item.directory | #8EC07C | — |
| orgmode.link | #FABD2F | underline |
| orgmode.page | #B8BB26 | — |
| orgmode.break | #D3869B | — |
| orgmode.headline | #8EC07C | — |
| orgmode.tack | #FABD2F | — |
| orgmode.follow_up | #FABD2F | — |
| orgmode.checkbox | #FABD2F | — |
| orgmode.checkbox.summary | #FABD2F | — |
| orgmode.tags | #FA5C4B | — |
| punctuation.definition.list | #86D4CF | — |
| token.info-token | #6796E6 | — |
| token.warn-token | #CD9731 | — |
| token.error-token | #F44747 | — |
| token.debug-token | #B267E6 | — |
| entity.name.type | #C9EEAD | — |
| storage.type | — | bold |
| storage.type | — | |
| entity.name.class, entity.name.type.class, support.type, support.class, support.other.namespace.use.php, meta.use.php, support.other.namespace.php, markup.changed.git_gutter | #E0B4B4 | — |
| entity.name.type | #9DC7C0 | — |
| meta.selector.css, entity.other.attribute-name.id | #FAF5DAD6 | — |
| meta.selector.css entity.other.attribute-name.class | #FAF5DAD6 | — |
| entity.other.attribute-name | #FAF5DAD6 | — |
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}!`;
}