GatomontesRoseIII
Publisher: GatomontesRoseIIIThemes in package: 8
temas personalizados de vscode :) alguno snippets(teclado rapido)
temas personalizados de vscode :) alguno snippets(teclado rapido)
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 |
|---|---|---|
| punctuation.separator, punctuation.terminator | #bfbdb6b3 | — |
| meta.decorator variable.other, meta.decorator punctuation.decorator, storage.type.annotation | #bbb6bf | — |
| comment | #acb6bf8c | italic |
| string, constant.other.symbol | #aad94c | — |
| string.regexp, constant.character, constant.other | #95e6cb | — |
| constant.numeric | #d2a6ff | — |
| constant.language | #d2a6ff | — |
| variable, variable.parameter.function-call | #A9B7C6 | — |
| variable.language | #39bae6 | italic |
| storage | #0096FF | — |
| keyword | #0096FF | — |
| keyword.operator | #f29668 | — |
| punctuation.accessor | #f29668 | — |
| storage.type.function | #ff8f40 | — |
| source.java storage.type.primitive | #39bae6 | — |
| entity.name.function | #aad94c | — |
| variable.parameter, meta.parameter | #d2a6ff | — |
| support.function, support.macro | #f07178 | — |
| entity.name | #f07178 | |
| entity.name.tag, meta.tag.sgml | #0096FF | — |
| punctuation.definition.tag.end, punctuation.definition.tag.begin, punctuation.definition.tag | #0096FF | — |
| entity.other.attribute-name | #ffb454 | — |
| variable.other.local.java | #f29668 | — |
| source | #bfbdb6 | — |
| punctuation.section | #bfbdb6 | — |
| variable.member | #f07178 | — |
| punctuation.definition.template-expression | #39bae6 | — |
| meta.embedded | #bfbdb6 | — |
| source.java storage.type, source.haskell storage.type, source.c storage.type | #59c2ff | — |
| entity.other.inherited-class | #39bae6 | — |
| variable.function, variable.annotation, meta.function-call.generic, support.function.go | #ffb454 | — |
| entity.name.import, entity.name.package | #aad94c | — |
| support.class.component | #59c2ff | — |
| support.constant | #f29668 | italic |
| support.type, support.class, source.go storage.type | #39bae6 | — |
| invalid | #d95757 | — |
| meta.diff, meta.diff.header | #c594c5 | — |
| source.ruby variable.other.readwrite | #ffb454 | — |
| source.css entity.name.tag, source.sass entity.name.tag, source.scss entity.name.tag, source.less entity.name.tag, source.stylus entity.name.tag | #59c2ff | — |
| source.css support.type, source.sass support.type, source.scss support.type, source.less support.type, source.stylus support.type | #acb6bf8c | — |
| support.type.property-name | #39bae6 | normal |
| constant.numeric.line-number.find-in-files - match | #acb6bf8c | — |
| constant.numeric.line-number.match | #ff8f40 | — |
| entity.name.filename.find-in-files | #aad94c | — |
| message.error | #d95757 | — |
| markup.heading, markup.heading entity.name | #aad94c | bold |
| markup.underline.link, string.other.link | #39bae6 | — |
| markup.italic | #f07178 | italic |
| markup.bold | #f07178 | bold |
| markup.italic markup.bold, markup.bold markup.italic | — | bold italic |
| markup.raw | — | — |
| markup.raw.inline | — | — |
| meta.separator | #acb6bf8c | bold |
| markup.quote | #95e6cb | italic |
| markup.list punctuation.definition.list.begin | #ffb454 | — |
| markup.inserted | #7fd962 | — |
| markup.changed | #73b8ff | — |
| markup.deleted | #f26d78 | — |
| markup.strike | #e6b673 | — |
| markup.table | #39bae6 | — |
| text.html.markdown markup.inline.raw | #f29668 | — |
| text.html.markdown meta.dummy.line-break | #acb6bf8c | — |
| punctuation.definition.markdown | #acb6bf8c | — |
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}!`;
}