Rider IDE Themes
Publisher: muhammad-sammyThemes in package: 3
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 |
|---|---|---|
| Global settings | #DCDCDC | — |
| string | #D69D85 | — |
| punctuation, constant.other.symbol | #DCDCDC | — |
| constant.character.escape, text.html constant.character.entity.named | #E07A00 | — |
| constant.language.boolean | #DDA0DD | — |
| constant.numeric | #B5CEA8 | — |
| variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments | #DCDCDC | — |
| keyword.other | #569CD6 | — |
| keyword, modifier, variable.language.this, support.type.object, constant.language | #569CD6 | — |
| entity.name.function, support.function | #00FFFF | — |
| storage.type, storage.modifier, storage.control | #569CD6 | — |
| support.module, support.node | #DDA0DD | italic |
| support.type, constant.other.key | #00FFFF | — |
| entity.name.type, entity.other.inherited-class, entity.other | #00FFFF | — |
| comment | #57A64A | italic |
| comment punctuation.definition.comment, string.quoted.docstring | #57A64A | italic |
| punctuation | #DCDCDC | — |
| entity.name, entity.name.type.class, support.type, support.class, meta.use | #ADD8E6 | — |
| variable.object.property, meta.field.declaration entity.name.function | #00FFFF | — |
| meta.definition.method entity.name.function | #00FFFF | — |
| meta.function entity.name.function | #00FFFF | — |
| template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end | #569CD6 | — |
| meta.embedded, source.groovy.embedded, meta.template.expression | #DCDCDC | — |
| entity.name.tag.yaml | #DDA0DD | — |
| meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json | #DDA0DD | — |
| constant.language.json | #569CD6 | — |
| entity.other.attribute-name.class | #569CD6 | — |
| entity.other.attribute-name.id | #D69D85 | — |
| source.css entity.name.tag | #00FFFF | — |
| support.type.property-name.css | #00FFFF | — |
| meta.tag, punctuation.definition.tag | #569CD6 | — |
| entity.name.tag | #DDA0DD | — |
| entity.other.attribute-name | #569CD6 | — |
| punctuation.definition.entity.html | #E07A00 | — |
| markup.heading | #569CD6 | — |
| text.html.markdown meta.link.inline, meta.link.reference | #DDA0DD | — |
| text.html.markdown beginning.punctuation.definition.list | #569CD6 | — |
| markup.italic | #DDA0DD | italic |
| markup.bold | #DDA0DD | bold |
| markup.bold markup.italic, markup.italic markup.bold | #DDA0DD | italic bold |
| markup.fenced_code.block.markdown punctuation.definition.markdown | #D69D85 | — |
| markup.inline.raw.string.markdown | #D69D85 | — |
| keyword.other.definition.ini | #DDA0DD | — |
| entity.name.section.group-title.ini | #569CD6 | — |
| source.cs meta.class.identifier storage.type | #ADD8E6 | — |
| source.cs meta.method.identifier entity.name.function | #00FFFF | — |
| source.cs meta.method-call meta.method, source.cs entity.name.function | #00FFFF | — |
| source.cs storage.type | #00FFFF | — |
| source.cs meta.method.return-type | #00FFFF | — |
| source.cs meta.preprocessor | #57A64A | — |
| source.cs entity.name.type.namespace | #DCDCDC | — |
| meta.jsx.children, SXNested | #DCDCDC | — |
| support.class.component | #00FFFF | — |
| source.cpp meta.block variable.other | #DCDCDC | — |
| source.python meta.member.access.python | #DDA0DD | — |
| source.python meta.function-call.python, meta.function-call.arguments | #00FFFF | — |
| meta.block | #DDA0DD | — |
| entity.name.function.call | #00FFFF | — |
| source.php support.other.namespace, source.php meta.use support.class | #DCDCDC | — |
| constant.keyword | #569CD6 | italic |
| entity.name.function | #00FFFF | — |
| Global settings | #DCDCDC | — |
| punctuation.definition.string | #D69D85 | — |
| meta.tag, entity.name.tag, support.class.component, punctuation.definition.tag.begin, punctuation.definition.tag.end | #E8BF6A | — |
| entity.other.attribute-name.tsx, meta.tag.attributes.tsx | #DCDCDC | — |
| entity.name.type.namespace.cs, entity.name.type.interface, entity.name.type | #ADD8E6 | — |
| variable.other.property, entity.name.variable.field, meta.object-literal.key | #EE82EE | — |
| variable.other.constant | #EE82EE | bold |
| entity.name.variable, entity.other.attribute-name, keyword.operator | #DCDCDC | — |
| comment.documentation.name | #DCDCDC | — |
| comment.documentation.attribute.name | #A3A3A3 | — |
| comment.documentation.attribute.value | #D69D85 | — |
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}!`;
}