Qii Theme
Publisher: qiqi29Themes in package: 3
一个 VSCode 主题。
一个 VSCode 主题。
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 |
|---|---|---|
| comment, punctuation.definition.comment | #6d707a | — |
| string, string.quoted | #B0D69E | — |
| constant.numeric | #76C4C4 | — |
| support.constant.math | #76C4C4 | — |
| storage.type | #76C4C4 | — |
| constant.language | #76C4C4 | — |
| keyword, keyword.operator.constructor | #E394DC | — |
| storage | #E394DC | — |
| keyword.operator.logical | #E68096 | — |
| variable.language | #E68096 | — |
| keyword.operator | #E68096 | — |
| entity.name.type | #E6C28D | — |
| entity.other.inherited-class | #E6C28D | — |
| entity.name.class, entity.name.module, storage.identifier, support.class, meta.function-call.arguments.python | #E6C28D | — |
| variable.other.constant | #82b8fa | — |
| variable.other.object, variable.other.global, variable.other.readwrite.class, variable.other.readwrite.instance, variable.other.readwrite.batchfile, variable.readwrite, variable.readwrite.other.block | #CACBD4 | — |
| variable.other | #CACBD4 | — |
| variable.other.property, variable.other.block, meta.function-call.python | #82b8fa | — |
| variable.other.object.property, meta.attribute.python | #CACBD4 | — |
| constant.character, constant.other | #76C4C4 | — |
| constant.character.escape | #82b8fa | — |
| string.regexp | #B2DC9F | — |
| string.regexp keyword.other | #E68096 | — |
| string.embedded.begin, string.embedded.end, punctuation.definition.template-expression, punctuation.section.embedded | #76C4C4 | — |
| punctuation.section.embedded.begin.js, punctuation.section.embedded.end.js, punctuation.section.embedded.begin.erb, punctuation.section.embedded.end.erb, source.elixir.embedded, punctuation.separator, punctuation.accessor, meta.brace | #989CA6 | — |
| storage.modifier.import, storage.modifier.package | #82b8fa | — |
| function.support.builtin, function.support.core | #82b8fa | — |
| entity.name.function, support.function | #e6c28d | — |
| variable.parameter, entity.name.variable.parameter, parameter.variable | #CACBD4 | italic |
| meta.tag | #CACBD4 | — |
| meta.object-literal.key.js, meta.object-literal.key.ts | #CACBD4 | — |
| entity.name.tag, entity.name.tag.class.js | #7cbcf4 | bold |
| entity.other.attribute-name | #bda3ff | — |
| punctuation.definition.tag | #989CA6 | — |
| support.type.property-name.css, support.type.property-name.scss, support.type.property-name.less, support.type.property-name.sass | #CACBD4 | — |
| entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-class.scss, entity.other.attribute-name.pseudo-class.less, entity.other.attribute-name.pseudo-class.sass, entity.other.attribute-name.pseudo-element.css, entity.other.attribute-name.pseudo-element.scss, entity.other.attribute-name.pseudo-element.less, entity.other.attribute-name.pseudo-element.sass | #76C4C4 | — |
| support.constant.css, support.constant.scss, support.constant.less, support.constant.sass | #B0D69E | — |
| variable.css, variable.scss, variable.less, variable.sass | #B0D69E | — |
| variable.css.string, variable.scss.string, variable.less.string, variable.sass.string | #E0B16A | — |
| meta.property-value.css | #E394DC | — |
| support.type.property-name.json | #82b8fa | — |
| support.constant | #82b8fa | — |
| support.type, support.variable | #82b8fa | — |
| support.dictionary.json | #82b8fa | — |
| support.other.variable | — | |
| invalid | #CACBD4 | — |
| invalid.deprecated | #CACBD4 | — |
| string.detected-link | #82b8fa | — |
| meta.diff, meta.diff.header | #82b8fa | — |
| markup.deleted | #E68096 | — |
| markup.inserted | #B0D69E | — |
| markup.changed | #E0B16A | — |
| punctuation.definition.italic.markdown, punctuation.definition.bold.markdown, punctuation.definition.heading.markdown | #676f7d | — |
| punctuation.definition.italic.markdown | — | italic |
| markup.underline.link.markdown | #82b8fa | — |
| markup.bold.markdown | — | bold |
| markup.heading.markdown | #82b8fa | bold |
| markup.quote.markdown | #9d9fa5 | — |
| meta.separator.markdown | #E68096 | bold |
| markup.raw.inline.markdown, markup.raw.block.markdown | #76C4C4 | — |
| punctuation.definition.list_item.markdown | #82b8fa | bold |
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}!`;
}