REPAY Theme
Publisher: REPAYThemes in package: 1
REPAY's company branded Visual Studio Code theme
REPAY's company branded Visual Studio Code theme
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 |
|---|---|---|
| — | #c0c5ce70 | — |
| variable.parameter.function | #eeffffff | — |
| comment, punctuation.definition.comment | #CDD3DE50 | — |
| text, source | #CDD3DE | — |
| punctuation.definition.string, punctuation.definition.variable, punctuation.definition.string, punctuation.definition.parameters, punctuation.definition.string, punctuation.definition.array | #d9f5dd | — |
| none | #d9f5ddff | — |
| keyword.operator | #39ADB5 | — |
| keyword | #c792eaff | — |
| variable | #ff5370 | — |
| entity.name.function, meta.require, support.function.any-method, meta.function-call, support.function, keyword.other.special-method, meta.block-level, meta.function-call.method.with-arguments variable.function | #89DDFF | — |
| support.class, entity.name.class, entity.name.type.class, variable.language.this.js | #ffcb6b | — |
| meta.class | #ffffff | — |
| keyword.other.special-method | #89DDFF | — |
| storage | #c792eaff | — |
| support.function, keyword.operator, constant.other.color, meta.tag, punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, meta.function-call meta.function-call.arguments variable.parameter.function, text.html.markdown meta.paragraph meta.link.inline, text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.begin.markdown, text.html.markdown meta.paragraph meta.link.inline punctuation.definition.string.end.markdown | #80CBC4 | — |
| string, constant.other.symbol, entity.other.inherited-class | #C3E88D | — |
| constant.numeric | #F77669 | — |
| none | #F77669 | — |
| meta.function-call meta.function-call.arguments | #C3E88D | — |
| none | #F77669 | — |
| constant | #F77669 | — |
| entity.name.tag | #ff5370ff | — |
| entity.other.attribute-name | #FFCB6B | — |
| entity.other.attribute-name.id | #FAD430 | — |
| meta.selector | #c792eaff | — |
| none | #F77669 | — |
| markup.heading punctuation.definition.heading, entity.name.section | #78ccf0ff | |
| keyword.other.unit | #F77669 | — |
| markup.bold, punctuation.definition.bold | #ffcb6b | bold |
| markup.italic, punctuation.definition.italic | #c792eaff | italic |
| markup.raw.inline | #f1e655 | — |
| string.other.link, punctuation.definition.string.end.markdown | #ff5370 | — |
| meta.link | #F77669 | — |
| markup.list | #ff5370ff | — |
| markup.quote | #F77669 | — |
| meta.separator | #d9f5ddff | — |
| markup.inserted | #F1E655 | — |
| markup.deleted | #ff5370ff | — |
| markup.changed | #c792eaff | — |
| constant.other.color, meta.property-value support.constant.named-color.css | #FFEB95 | — |
| string.regexp | #80CBC4 | — |
| constant.character.escape | #F77669 | — |
| punctuation.section.embedded, variable.interpolation | #d3423eff | — |
| invalid.illegal | #ffffffff | — |
| invalid.broken | #020e14ff | — |
| invalid.deprecated | #ffffffff | — |
| invalid.unimplemented | #ffffffff | — |
| sublimelinter.annotations | #7b5157ff | — |
| sublimelinter.outline.illegal | #ffffffff | — |
| sublimelinter.underline.illegal | — | — |
| sublimelinter.outline.warning | #ffffffff | — |
| sublimelinter.underline.warning | — | — |
| sublimelinter.outline.violation | #ffffffff | — |
| sublimelinter.underline.violation | — | — |
| sublimelinter.mark.error | #ff572dff | — |
| sublimelinter.mark.warning | #ffcf1bff | — |
| sublimelinter.gutter-mark | #ffffffff | — |
| markup.deleted.git_gutter | #EC5F67 | — |
| markup.changed.git_gutter | #FFCF1B | — |
| markup.inserted.git_gutter | #C3E88D | — |
| markup.ignored.git_gutter | #546E7A | — |
| comment.line.double-slash punctuation.definition.comment, meta.structure.array comment.block.json punctuation.definition.comment | #616161 | — |
| text.find-in-files entity.name.filename.find-in-files | #FFEB95 | — |
| support.type.property-name | #80CBC4 | — |
| meta.property-list meta.property-name | #80CBC4 | — |
| source.css keyword.other.unit, source.less keyword.other.unit, source.scss keyword.other.unit, source.sass keyword.other.unit | #FFEB95 | — |
| entity.other.less.mixin | #7986CB | — |
| source.less parameter.less variable.parameter.misc.css | #7986CB | — |
| source.less meta.property-value.css string.quoted.double.css comment markup.raw | #C3E88D | — |
| constant.other.color.rgb-value punctuation.definition.constant | #F77669 | — |
| meta.attribute-selector string.unquoted.attribute-value | #C3E88D | — |
| meta.attribute-selector entity.other.attribute-name.attribute | #F77669 | — |
| source.gulpfile.js meta.group.braces.round meta.group.braces.curly meta.group.braces.round meta.function-call.with-arguments.js variable.function.js, source.gulpfile.js meta.group.braces.round meta.group.braces.curly variable.function.js | #7986CB | — |
| meta.function-call support.type | #FFEB95 | — |
| source.python meta.function-call.arguments.python | #7986CB | — |
| embedding.php entity.name.tag | #DDDDDD | — |
| source.go meta.function-call.go | #DDDDDD | — |
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}!`;
}