Cika dark purple, red, blue, black Theme
Publisher: cikaThemes in package: 4
Cika dark purple, red, blue, black theme for Visual Studio Code
Cika dark purple, red, blue, black 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, string.comment, punctuation.definition.comment, string.quoted.docstring.multi, string.quoted.docstring.multi storage.type.string | #5c6370 | italic |
| string, punctuation.definition.template-expression.begin.js, punctuation.definition.template-expression.end.js, punctuation.definition.template-expression.begin.ts, punctuation.definition.template-expression.end.ts, string.template.js, meta.template.expression.js, string.embedded | #98c379 | — |
| constant.numeric | #c678dd | — |
| constant.language, constant.character, constant.other, variable.language, keyword, keyword.operator.logical, keyword.operator.constructor, storage | #FFD14A | — |
| storage.identifier, support.class, entity.other.inherited-class, variable.other.block, variable.other.object, storage.type, variable.readwrite, variable.readwrite.other.block | #61afef | — |
| #FF0000 | underline | |
| entity.name.function, entity.name.function-call, support.function, function.support.builtin, function.support.core, support.constant, variable.other.property, entity.name.class, entity.name.module, entity.name.type, support.type, support.variable, support.other.variable | #00AEFF | — |
| variable.parameter | — | italic |
| source.json, support.dictionary.json, support.type.property-name.json | #ddd | — |
| source.json string, source.json punctuation.definition.string, punctuation.definition.string.end.json, punctuation.definition.string.begin.json, structure.dictionary.property-name.json | #a8f | — |
| entity.other | #8df | — |
| entity.name.tag.block.any.html, entity.name.tag.inline.any.html, entity.name.tag.structure.any.html, entity.name.tag.html, meta.jsx.children.tsx | #00AAEF | — |
| punctuation.definition.keyword, keyword.control | #FFD14A | — |
| meta.toc-list.id.html | #91DD64 | — |
| meta.tag.block.any.html, meta.tag.inline.any.html | #00AEFF | — |
| punctuation.definition.tag.end.html, punctuation.definition.tag.begin.html | #777 | — |
| text.html.basic | #c3c3c3 | — |
| punctuation.definition.string.begin, punctuation.definition.string.end | #98c379 | — |
| source.css, source.stylus, source.scss, entity.other.attribute-name.class.css | #00AEFF | — |
| punctuation.definition.constant.css | #a8f | — |
| support.type.property-name.css | #ddd | — |
| source.css punctuation.definition.keyword, source.css keyword.control | #f6b | — |
| keyword.other.important.scss | #f6b | — |
| punctuation.definition.entity.css | #00AEFF | — |
| entity.other.attribute-name.pseudo-element.css | #00AEFF | — |
| support.function.misc.scss | #a8f | — |
| entity.other.attribute-name.id.css | #8df | — |
| entity.name.tag.css | #00AEFF | — |
| source.css support, source.stylus support, source.css support.constant | #ddd | — |
| source.stylus constant, source.css constant | #a8f | — |
| support.constant.property-value.css | #FFD14A | — |
| keyword.other.unit.css, keyword.other.unit.px.css, keyword.other.unit.percentage.css, constant.other.color.rgb-value.hex.css, keyword.other.unit.ms.css, keyword.other.unit.s.css, keyword.other.unit.vh.css, keyword.other.unit.vw.css, keyword.other.unit.deg.css, keyword.other.unit.fr.css | #a8f | — |
| source.css string, source.css punctuation.definition.string, source.stylus string, source.stylus punctuation.definition.string | #98c379 | — |
| source.css variable, source.stylus variable | #FFD14A | — |
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}!`;
}