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 |
|---|---|---|
| — | #000000 | — |
| comment | #8C8C8C | italic |
| string, constant.other.symbol | #003366 | — |
| string.regexp, constant.character, constant.other | #CE54B8 | — |
| constant.numeric | #E36209 | — |
| constant.language | #E36209 | — |
| variable, variable.parameter.function-call | #000000 | — |
| variable.member | #f07171 | — |
| variable.language | #0033B3 | italic |
| storage | #0033B3 | — |
| keyword | #0033B3 | — |
| keyword.operator | #000000 | — |
| punctuation.separator, punctuation.terminator | #000000 | — |
| punctuation.section | #000000 | — |
| punctuation.accessor | #000000 | — |
| punctuation.definition.template-expression | #fa8d3e | — |
| meta.embedded | #5c6166 | — |
| source.java storage.type, source.haskell storage.type, source.c storage.type | #CE54B8 | — |
| entity.other.inherited-class | #CE54B8 | — |
| storage.type.function | #000000 | — |
| source.java storage.type.primitive | #0033B3 | — |
| entity.name.function | #18800D | — |
| variable.parameter, meta.parameter | #6F42C1 | — |
| variable.function, variable.annotation, meta.function-call.generic, support.function.go | #18800D | — |
| support.function, support.macro | #f07171 | — |
| entity.name.import, entity.name.package | #86b300 | — |
| entity.name | #D73A49 | — |
| entity.name.tag, meta.tag.sgml | #0033B3 | — |
| support.class.component | #399ee6 | — |
| punctuation.definition.tag.end, punctuation.definition.tag.begin, punctuation.definition.tag | #0033B3 | — |
| entity.other.attribute-name | #D73A49 | — |
| support.constant | #ed9366 | italic |
| support.type, support.class, source.go storage.type | #0033B3 | — |
| meta.decorator variable.other, meta.decorator punctuation.decorator, storage.type.annotation | #0033B3 | — |
| invalid | #e65050 | — |
| meta.diff, meta.diff.header | #c594c5 | — |
| source.ruby variable.other.readwrite | #f2ae49 | — |
| 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 | #399ee6 | — |
| source.css support.type, source.sass support.type, source.scss support.type, source.less support.type, source.stylus support.type | #787b8099 | — |
| support.type.property-name | #067D17 | normal |
| constant.numeric.line-number.find-in-files - match | #787b8099 | — |
| constant.numeric.line-number.match | #fa8d3e | — |
| entity.name.filename.find-in-files | #86b300 | — |
| message.error | #e65050 | — |
| markup.heading, markup.heading entity.name | #86b300 | bold |
| markup.underline.link, string.other.link | #55b4d4 | — |
| markup.italic | #f07171 | italic |
| markup.bold | #f07171 | bold |
| markup.italic markup.bold, markup.bold markup.italic | — | bold italic |
| markup.raw | — | — |
| markup.raw.inline | — | — |
| meta.separator | #787b8099 | bold |
| markup.quote | #4cbf99 | italic |
| markup.list punctuation.definition.list.begin | #0033B3 | — |
| markup.inserted | #6cbf43 | — |
| markup.changed | #478acc | — |
| markup.deleted | #ff7383 | — |
| markup.strike | #e6ba7e | — |
| markup.table | #55b4d4 | — |
| text.html.markdown markup.inline.raw | #ed9366 | — |
| text.html.markdown meta.dummy.line-break | #787b8099 | — |
| punctuation.definition.markdown | #787b8099 | — |
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}!`;
}