Arkku
Publisher: Kimmo KulovesiThemes in package: 2
Arkku's color theme for Visual Studio Code
Arkku's color theme for Visual Studio Code
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 | #bbbbbb | — |
| quote | #555555 | — |
| string | #884466 | — |
| string.quoted.single | #dd6600 | — |
| string.quoted.double.json | #555555 | — |
| string.unquoted | #555555 | — |
| meta.preprocessor, meta.preprocessor keyword, meta.preprocessor.include string.quoted, meta.embedded.frontmatter | #006600 | — |
| string.regexp, string.regexp keyword.other, regexp-operator, string.regexp.characterclass punctuation.definition.string.begin, string.regexp.characterclass punctuation.definition.str | #dd9900 | — |
| constant.numeric, constant.character.numeric, constant.character.escape | #0099AA | — |
| support.constant, support.constant.json, support.constant.math, constant.language | #0066cc | — |
| constant.character, constant.other, variable.other.constant | #0041A3 | — |
| meta.function punctuation.separator.comma | #666666 | — |
| variable, variable.parameter, support.other.variable | #003366 | — |
| keyword, punctuation.accessor | #000000 | bold |
| bitwise-operator, keyword.operator | #000000 | |
| keyword.control.case, meta.conditional keyword.control | #0066cc | bold |
| storage, meta.var.expr, meta.class meta.method.declaration meta.var.expr storage.type.js, storage.type.property.js, storage.type.property.ts, storage.type.property.tsx | #000000 | — |
| storage.type, storage.modifier | #000000 | bold |
| storage.type.function.arrow.js | — | |
| entity.name.class, support.type, support.class, meta.class entity.name.type.class | #5C2699 | — |
| entity.other.inherited-class | — | italic |
| entity.name.function, support.function, meta.tag.swift | #000000 | — |
| entity.name.tag, punctuation.definition.tag, meta.tag | #63a35c | — |
| entity.name.tag.custom | #5ca388 | — |
| entity.other.attribute-name, support.type.property-name | #795da3 | — |
| invalid, invalid.illegal, invalid.deprecated | #e22e28 | — |
| meta.separator | #bbbbbb | — |
| markup.heading | — | bold |
| markup.raw.block | #666666 | — |
| meta.link, meta.image | #4183c4 | — |
| markup.underline.link, constant.other.reference | — | italic |
| markup.list | #444444 | — |
| bold, markup.bold | — | bold |
| italic, markup.italic | — | italic |
| bold italic, markup.bold markup.italic, italic bold, markup.italic markup.bold | — | bold italic |
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}!`;
}