re:Theme
Publisher: CydoThemes in package: 8
A collection of reimagined themes that I like, but felt are not completed. re:Themes is my way of bringing a form of completion to those themes while also adding my own flare to them.
A collection of reimagined themes that I like, but felt are not completed. re:Themes is my way of bringing a form of completion to those themes while also adding my own flare to them.
Full workbench mockup using this variant's colors and tokenColors.
Workbench UI color keys from the theme JSON colors map.
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| comment, comment keyword, comment markup.underline.link, comment string, comment punctuation.definition, comment punctuation, comment text | #5c5757 | italic |
| comment storage.type | #5c5757 | — |
| comment entity.name.type | #5c5757 | — |
| comment variable, comment variable.other | #5c5757 | — |
| comment.git-status.header.remote | #fc618d | — |
| comment.git-status.header.local | #5cb3c0 | — |
| comment.other.git-status.head | #d7d7d7 | — |
| constant | #c8e1ff | — |
| constant.other | #c8e1ff | — |
| constant.other.symbol | #5cb3c0 | — |
| constant.numeric | #c8e1ff | — |
| entity.name | #fff5f5 | — |
| entity.name.function, entity.name.function-call | #b392f0 | — |
| entity.name.section | #7bcc38 | — |
| entity.name.tag, entity.name.tag.js.jsx support.class.component.js.jsx, entity.name.tag support.class.component | #b392f0 | — |
| entity.other.attribute-name | #5cb3c0 | italic |
| entity.other.attribute-name.class.css, entity.other.attribute-name.parent-selector-suffix.css, entity.other.attribute-name.parent-selector-suffix.css punctuation.definition.entity.css, entity.other.attribute-name.css | #b392f0 | italic |
| entity.other.attribute-name.id.css | #5ae6b7 | italic |
| entity.other.attribute-name.pseudo-class.css, entity.other.pseudo-class.css, entity.other.pseudo-element.css | #5cb3c0 | italic |
| entity.other.git-status.hex | #948ae3 | — |
| invalid | — | italic |
| keyword | #7bcc38 | — |
| keyword.operator, keyword.operator.member, keyword.operator.new | #7bcc38 | — |
| keyword.other.substitution | #8b888f | — |
| markup.italic | — | italic |
| markup.bold | — | bold |
| markup.heading | #7bcc38 | — |
| markup.raw | #fd9353 | — |
| markup.underline | — | underline |
| markup.underline.link | #5cb3c0 | — |
| markup.inserted, markup.inserted punctuation.definition.inserted | #7bd88f | — |
| markup.deleted, markup.deleted punctuation.definition.deleted | #fc618d | — |
| markup.changed, markup.changed punctuation.definition.changed | #fce566 | — |
| markup.ignored, markup.ignored punctuation.definition.ignored | #8b888f | — |
| markup.untracked | #8b888f | — |
| markup.quote | — | italic |
| meta.brace.round, meta.brace.square, meta.brace.curly, meta.delimiter.comma.js, meta.function-call.without-arguments.js, meta.function-call.method.without-arguments.js | #888f88 | — |
| meta.function-call.python, meta.function-call.arguments.python meta.function-call.python | #b392f0 | — |
| meta.function-call.python meta.function-call.arguments.python | #fff5f5 | — |
| meta.object.member | #fff5f5 | — |
| meta.diff.git-diff.header | #fce566 | — |
| meta.separator.markdown | #8b888f | — |
| punctuation | #8b888f | — |
| punctuation.definition.variable, punctuation.definition.keyword.scss, punctuation.definition.entity.css | #bab6c0 | — |
| source | #d7d7d7 | — |
| source.scss, source.sass | #8f8888 | — |
| source.sass variable.other, source.sass variable.sass, source.scss variable.other, source.scss variable.scss, source.scss variable.sass, source.css variable.other, source.css variable.scss, source.less variable.other, source.less variable.other.less, source.less variable.declaration.less | #fff5f5 | italic |
| source.git-show.commit.sha | #948ae3 | — |
| source.git-show.author, source.git-show.date, source.git-diff.command, source.git-diff.command meta.diff.git-diff.header.from-file, source.git-diff.command meta.diff.git-diff.header.to-file | #8b888f | — |
| source.git-show meta.diff.git-diff.header.extended.index.from-sha, source.git-show meta.diff.git-diff.header.extended.index.to-sha | #948ae3 | — |
| source.git-show meta.diff.range.unified | #fd9353 | — |
| source.git-show meta.diff.header.from-file, source.git-show meta.diff.header.to-file | #8f8888 | — |
| storage | #5cb3c0 | — |
| storage.modifier, storage.type.modifier | #7bcc38 | italic |
| storage.type | #5cb3c0 | italic |
| storage.type.function.arrow | #7bcc38 | |
| string | #e69850 | — |
| string source | #fff5f5 | — |
| string.regexp punctuation.definition.string.begin, string.regexp punctuation.definition.string.end | #7bcc38 | — |
| support.constant | #5cb3c0 | — |
| support.function | #5ae6b7 | — |
| support.type, entity.name.type.object.console | #5cb3c0 | italic |
| support.type.property-name | #c8e1ff | |
| support.variable | #5cb3c0 | — |
| support.class | #5cb3c0 | — |
| text | #fff5f5 | — |
| variable | #fff5f5 | — |
| variable.parameter, parameters variable.function | #bab6c0 | italic |
| variable.language, variable.parameter.function.language.special.self.python, variable.parameter.function.language.special.cls.python | #bab6c0 | italic |
| variable.other.object | #bab6c0 | — |
| variable.other.constant, variable.other.property, variable.other.object.property | #c8e1ff | — |
| token.info-token | #316BCD | — |
| token.warn-token | #cd9731 | — |
| token.error-token | #f44747 | — |
| token.debug-token | #b267e6 | — |
TypeScript sample highlighted with this variant's colors and tokenColors.
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}!`;
}