Miezhiko Theme
Publisher: Маша MiezhikoThemes in package: 1
Miezhiko theme for VScode.
Miezhiko theme for 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 |
|---|---|---|
| punctuation.separator, punctuation.terminator | #dd717f | — |
| punctuation.definition.parameters | #718CA1 | — |
| entity | #70e1e8 | — |
| invalid | #d95468 | — |
| meta.brace | #718CA1 | — |
| storage.type.class.js | #008B94 | — |
| meta | #718CA1 | — |
| comment.line, comment.block, punctuation.definition.comment | #978c94 | italic |
| entity.name.type, entity.other.inherited-class, support.class | #008B94 | — |
| entity.name.function, support.function, meta.function-call.generic | #e98f9e | — |
| variable.parameter, entity.name.variable.parameter, meta.at-rule.function variable, meta.at-rule.mixin variable, meta.function.arguments, meta.selectionset.graphql meta.arguments.graphql variable.arguments.graphql | #dd93a3 | — |
| keyword, storage | #5ec4ff | — |
| storage.type, support.type | #89cfeb | |
| constant.numeric, constant.language, constant.character, constant, keyword.other | #e27e8d | |
| keyword.operator | #5ec4ff | |
| string | #64afa9 | — |
| support.variable, variable | #999698 | — |
| constant.character.escape | #559fe4 | — |
| source.json meta.structure.dictionary.json support.type.property-name.json | #c08c90 | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #f5a8bb | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #bdb0b8 | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #e4cdcd | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #56d8c2 | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #ffffff | — |
| entity.other.attribute-name | #e06767 | — |
| meta.tag | #559fe4 | — |
| entity.name.tag | #618ae2 | — |
| entity.other.attribute-name.class | #dba15e | — |
| entity.other.attribute-name.id | #dfa0ae | — |
| support.constant.property-value | #6de2a8 | — |
| markup.heading, markup.heading entity.name | #618be7 | — |
| markup.list punctuation.definition.list.begin | #dd7183 | — |
| markup.underline.link | #dd809c | — |
| markup.bold | #63dbc7 | bold |
| markup.italic | #d9db63 | italic |
| markup.italic markup.bold, markup.bold markup.italic | — | italic bold |
| text.html.markdown markup.inline.raw | #71e0d7 | — |
| markup.quote | #99ca82 | italic |
| source.css, source.stylus, source.scss, entity.other.attribute-name.class.css | #68A1F0 | — |
| punctuation.definition.constant.css | #d95454 | — |
| constant.other.color.rgb-value.hex.css | #E27E8Dff | — |
| entity.other.inherited-class.js, variable.other.readwrite.alias.js, meta.import.js, punctuation.accessor.js, punctuation.accessor.jsx, punctuation.accessor.ts, punctuation.accessor.tsx, variable.other.readwrite.ts, variable.other.readwrite.tsx, variable.other.readwrite.js, variable.other.readwrite.jsx | #B7C5D3 | — |
| variable.other.constant.js, variable.other.constant.js.jsx, variable.other.constant.ts, variable.other.constant.property.ts, variable.other.constant.property.js, variable.other.constant.property.tsx, variable.other.constant.tsx, support.constant.json.js, support.constant.json.ts, support.constant.json.tsx, variable.other.constant.object.js, variable.object.property.js, variable.object.property.jsx, variable.object.property.ts, variable.object.property.tsx | #8BD49C | — |
| variable.parameter.function.language.special.self.python | #b62d3f | — |
| storage.type.function.python | #b62d2d | — |
| meta.function-call.arguments.python | #d48b95 | — |
| meta.function-call.generic.python | #008b94 | — |
| source.json support | #718CA1 | — |
| source.json string, source.json punctuation.definition.string, punctuation.definition.string.end.json, punctuation.definition.string.begin.json | #B7C5D3 | — |
| support.type.primitive.ts | #33ced8 | italic |
| entity.name.tag.yaml | #77a9e0 | — |
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}!`;
}