Kite Theme
Publisher: Yudin NikitaThemes in package: 3
Kite Theme is a modern and stylish theme that looks really cool with its dark colors and simple design.
Kite Theme is a modern and stylish theme that looks really cool with its dark colors and simple design.
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, string.comment | #8299B5 | italic |
| punctuation | #A9B4C1 | — |
| punctuation.decorator, meta.brace.round | #04274E | — |
| punctuation.terminator.statement | #A9B4C1 | — |
| punctuation.accessor.optional | #A167E6 | — |
| punctuation.definition.constant | #237CE1 | — |
| punctuation.section.embedded | #993CC8 | — |
| string, punctuation.definition.string | #9D871B | — |
| constant.numeric, keyword.other.unit | #C97B22 | — |
| constant.language, entity.name.tag, keyword, keyword.operator, storage.modifier, storage.type, support.type.primitive | #E00B2E | — |
| variable.language, fenced_code.block.language | #8C9AAB | italic |
| variable.parameter, entity.name.variable.parameter, parameter.variable | #04274E | italic |
| meta.function, meta.function-call, meta.definition.function, meta.definition.method, meta.method.declaration, entity.name.function, entity.other.attribute-name, support.function, function.support.builtin, function.support.core, punctuation.definition.entity | #2C9D1B | — |
| constant.language.boolean.true | #47BD14 | bold |
| constant.language.boolean.false | #E75850 | bold |
| constant.language.null | — | bold |
| support.variable.property | #586779 | — |
| meta.property-value | #586779 | — |
| constant.character, constant.other, support.constant | #237CE1 | — |
| meta.definition.variable, meta.parameters, meta.method.declaration, meta.object.member, variable.other.constant, variable.other.object, entity.name.variable.local | #0B6EE0 | — |
| entity.name.class, entity.name.type, entity.name.class.declaration, entity.name.type.class, entity.other.inherited-class | #B129F5 | — |
| meta.block, meta.class, meta.var.expr, meta.template.expression, meta.function-call.arguments, meta.definition.property, meta.field.declaration, meta.tag.without-attributes, meta.children, entity.name.type.namespace, entity.name.variable, entity.name.section, variable.object.property, variable.other.assignment, variable.other.object.property, variable.other.constant.property, variable.other.readwrite.alias | #04274E | — |
| punctuation.definition.variable, punctuation.support.type.property-name, storage.modifier.lifetime, variable.other.property, variable.other.jsdoc | #04274E | — |
| meta.object-literal.key, support.type.property-name | #04274E | — |
| meta.return.type, meta.field.declaration, meta.interface, support.type, support.type.primitive, support.type.property-name, punctuation.support.type.property-name | #288FC3 | — |
| entity.other.attribute-name.pseudo-class | — | italic |
| markup.underline.link | #2497AE | — |
| markup.bold | #1E1E1F | bold |
| markup.italic | #1E1E1F | italic |
| case-clause.expr, switch-block.expr, switch-statement.expr | #41A1C0 | — |
| token.info-token | #0F63C2 | — |
| token.warn-token | #C28D0F | — |
| token.error-token | #C20F0F | — |
| token.debug-token | #422EA3 | — |
| fenced_code.block.language, punctuation.definition.bold.markdown, punctuation.definition.heading.markdown, punctuation.definition.italic.markdown, punctuation.definition.markdown, punctuation.definition.metadata.markdown, punctuation.definition.raw.markdown, punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown | #0A42FA | — |
| punctuation.definition.list.begin.markdown, punctuation.definition.quote.begin.markdown | #288FC3 | — |
| markup.quote.markdown | #FA3A0A | — |
| storage.type.cs, entity.name.type.cs | #3528C3 | — |
| keyword.type.cs | #288FC3 | — |
| variable.css, variable.scss, variable.less, variable.sass | #0B6EE0 | — |
| support.class.dart, other.source.dart | #E00B2E | — |
| punctuation.definition.variable.php, variable.other | #04274E | — |
| meta.class.kotlin | #C83CC8 | — |
| support.class.kotlin | #288FC3 | — |
| variable.other.readwrite.instance.ruby, punctuation.definition.variable.ruby | #0A42FA | — |
| constant.other.symbol.hashkey.ruby, constant.other.symbol.ruby, punctuation.definition.constant.ruby | #288FC3 | — |
| meta.function.method.with-arguments.ruby | #04274E | — |
| entity.name.type.class.std.rust | #6828C3 | — |
| entity.name.type.rust, entity.name.type.numeric.rust | #0A42FA | — |
| meta.indexed-name.python | #2C9D1B | — |
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}!`;
}