WarmDarkCrisp
Publisher: Akul MehtaThemes in package: 1
A warm dark crisp theme extended from Kimbie Dark. This has better comment colors and darker background for more clarity of the text.
A warm dark crisp theme extended from Kimbie Dark. This has better comment colors and darker background for more clarity of the text.
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 |
|---|---|---|
| meta.embedded, source.groovy.embedded | #D3AF86 | — |
| variable.parameter.function | #D3AF86 | — |
| comment, punctuation.definition.comment | #A57A4C | — |
| punctuation.definition.string, punctuation.definition.variable, punctuation.definition.string, punctuation.definition.parameters, punctuation.definition.string, punctuation.definition.array | #D3AF86 | — |
| none | #D3AF86 | — |
| keyword.operator | #D3AF86 | — |
| keyword, keyword.control, keyword.operator.new.cpp, keyword.operator.delete.cpp, keyword.other.using, keyword.other.operator | #98676A | — |
| variable | #DC3958 | — |
| entity.name.function, meta.require, support.function.any-method | #8AB1B0 | — |
| support.class, entity.name.class, entity.name.type, entity.name.namespace, entity.name.scope-resolution | #F06431 | — |
| keyword.other.special-method | #8AB1B0 | — |
| storage | #98676A | — |
| support.function | #7E602C | — |
| string, constant.other.symbol, entity.other.inherited-class | #889B4A | — |
| constant.numeric | #F79A32 | — |
| none | #F79A32 | — |
| none | #F79A32 | — |
| constant | #F79A32 | — |
| entity.name.tag | #DC3958 | — |
| entity.other.attribute-name | #F79A32 | — |
| entity.other.attribute-name.id, punctuation.definition.entity | #8AB1B0 | — |
| meta.selector | #98676A | — |
| none | #F79A32 | — |
| markup.heading, markup.heading.setext, punctuation.definition.heading, entity.name.section | #8AB1B0 | |
| keyword.other.unit | #F79A32 | — |
| markup.bold, punctuation.definition.bold | #F06431 | bold |
| markup.italic, punctuation.definition.italic | #98676A | italic |
| markup.inline.raw | #889B4A | — |
| string.other.link | #DC3958 | — |
| meta.link | #F79A32 | — |
| markup.list | #DC3958 | — |
| markup.quote | #F79A32 | — |
| meta.separator | #D3AF86 | — |
| markup.inserted | #889B4A | — |
| markup.deleted | #DC3958 | — |
| markup.changed | #98676A | — |
| constant.other.color | #7E602C | — |
| string.regexp | #7E602C | — |
| constant.character.escape | #7E602C | — |
| punctuation.section.embedded, variable.interpolation | #088649 | — |
| invalid.illegal | #DC3958 | — |
| comment | #D4BB2F | — |
| punctuation.definition.comment | #D4BB2F | — |
| token.info-token | #6796E6 | — |
| token.warn-token | #CD9731 | — |
| token.error-token | #F44747 | — |
| token.debug-token | #B267E6 | — |
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}!`;
}