Kiwi Joker Theme
Publisher: Kiwi ParticleThemes in package: 1
A Green & Purple theme for javascript/vue
A Green & Purple theme for javascript/vue
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 |
|---|---|---|
| entity.name.function.method.js, entity.name.function.js | #9b82bb | — |
| meta.embedded, source.groovy.embedded | #D8D8D8 | — |
| emphasis | — | italic |
| strong | — | bold |
| header | #FFC899 | — |
| comment | #b99b80 | — |
| constant.language | #FFC899 | — |
| constant.numeric | #FFC899 | — |
| constant.regexp | #646695 | — |
| entity.name.tag | #B0B0B0 | — |
| entity.name.tag.css | #FFC899 | — |
| entity.other.attribute-name | #FFC899 | — |
| entity.other.attribute-name.class.css, entity.other.attribute-name.class.mixin.css, entity.other.attribute-name.id.css, entity.other.attribute-name.parent-selector.css, entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-element.css, source.css.less entity.other.attribute-name.id, entity.other.attribute-name.attribute.scss, entity.other.attribute-name.scss | #FFC899 | — |
| invalid | #f44747 | — |
| markup.underline | — | underline |
| markup.bold | #B0B0B0 | bold |
| markup.heading | #B0B0B0 | bold |
| markup.italic | — | italic |
| markup.inserted | #FFC899 | — |
| markup.deleted | #FFC899 | — |
| markup.changed | #B0B0B0 | — |
| punctuation.definition.quote.begin.markdown | #6A9955 | — |
| punctuation.definition.list.begin.markdown | #6796e6 | — |
| markup.inline.raw | #FFC899 | — |
| punctuation.definition.tag | #808080 | — |
| meta.preprocessor | #B0B0B0 | — |
| meta.preprocessor.string | #619970 | — |
| meta.preprocessor.numeric | #FFC899 | — |
| meta.structure.dictionary.key.python | #FFC899 | — |
| meta.diff.header | #B0B0B0 | — |
| string | #619970 | — |
| string.unquoted | #B0B0B0 | — |
| string.tag | #619970 | — |
| string.value | #619970 | — |
| string.regexp | #619970 | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end, punctuation.section.embedded | #B0B0B0 | — |
| meta.template.expression | #D8D8D8 | — |
| support.type.property-name | #619970 | — |
| support.type.property-name.css | #B0B0B0 | — |
| support.type.property-name.json.comments | #B0B0B0 | — |
| support.type.vendored.property-name, variable.css, variable.scss, variable.other.less, source.coffee.embedded | #D8D8D8 | — |
| keyword | #D8D8D8 | — |
| keyword.control | #D8D8D8 | — |
| keyword.other.unit | #B0B0B0 | — |
| punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php | #B0B0B0 | — |
| support.function.git-rebase | #FFC899 | — |
| constant.sha.git-rebase | #FFC899 | — |
| storage.modifier.import.java, variable.language.wildcard.java, storage.modifier.package.java | #D8D8D8 | — |
| variable.language | #B0B0B0 | — |
| source.directive.vue | #619970 | — |
| storage | #75a782 | — |
| keyword.operator | #75a782 | — |
| entity.quasi.element.js | #B0B0B0 | — |
| punctuation.quasi.element | #808080 | — |
| variable.other.class | #808080 | — |
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}!`;
}