Warm Burnout
Publisher: Felipe F LimaThemes in package: 2
The theme for developers who are already burned out but still have deadlines. Mostly warm palette, one cool type accent, WCAG-audited contrast.
The theme for developers who are already burned out but still have deadlines. Mostly warm palette, one cool type accent, WCAG-audited contrast.
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 |
|---|---|---|
| — | #bfbdb6 | — |
| comment | #b4a89c | italic |
| string, constant.other.symbol | #b4bc78 | — |
| string.regexp, constant.character, constant.other | #96b898 | — |
| constant.numeric | #d4a8b8 | — |
| constant.language | #d4a8b8 | — |
| variable, variable.parameter.function-call | #bfbdb6 | — |
| variable.member | #ec9878 | — |
| variable.language | #dc9e92 | italic |
| storage | #ff8f40 | bold |
| keyword | #ff8f40 | bold |
| keyword.operator | #f29668 | — |
| punctuation.separator, punctuation.terminator | #bfbdb6d9 | — |
| punctuation.section | #bfbdb6 | — |
| punctuation.accessor | #f29668 | — |
| punctuation.definition.template-expression | #ff8f40 | — |
| punctuation.section.embedded | #ff8f40 | — |
| meta.embedded | #bfbdb6 | — |
| source.java storage.type, source.haskell storage.type, source.c storage.type | #90aec0 | — |
| entity.other.inherited-class | #90aec0 | — |
| storage.type.function | #ff8f40 | — |
| source.java storage.type.primitive | #90aec0 | — |
| entity.name.function | #ffb454 | — |
| variable.parameter, meta.parameter | #d4a8b8 | — |
| variable.function, variable.annotation, meta.function-call.generic, support.function.go | #ffb454 | — |
| support.function, support.macro | #ec9878 | — |
| entity.name.import, entity.name.package | #b4bc78 | — |
| entity.name.type, entity.name.class, entity.name.struct, entity.name.enum, entity.name.interface, entity.name.union, entity.name.trait | #90aec0 | italic |
| entity.name.tag, meta.tag.sgml | #dc9e92 | bold |
| support.class.component | #90aec0 | — |
| punctuation.definition.tag.end, punctuation.definition.tag.begin, punctuation.definition.tag | #dc9e92 | — |
| entity.other.attribute-name | #ffb454 | — |
| entity.other.attribute-name.pseudo-class | #96b898 | — |
| support.constant | #f29668 | italic |
| support.type, support.class, source.go storage.type | #90aec0 | — |
| meta.decorator variable.other, meta.decorator punctuation.decorator, storage.type.annotation, entity.name.function.decorator | #e6c08a | italic |
| invalid | #f49090 | — |
| meta.diff, meta.diff.header | #c0a0a0 | — |
| source.ruby variable.other.readwrite | #ffb454 | — |
| source.css entity.name.tag, source.sass entity.name.tag, source.scss entity.name.tag, source.less entity.name.tag, source.stylus entity.name.tag | #deb074 | — |
| source.css support.type, source.sass support.type, source.scss support.type, source.less support.type, source.stylus support.type | #b4a89c | — |
| support.type.property-name | #deb074 | italic |
| constant.numeric.line-number.find-in-files - match | #b4a89c | — |
| constant.numeric.line-number.match | #ff8f40 | — |
| entity.name.filename.find-in-files | #b4bc78 | — |
| message.error | #f49090 | — |
| markup.heading, markup.heading entity.name | #b4bc78 | bold |
| markup.underline.link, string.other.link | #dc9e92 | — |
| markup.italic, emphasis | #ec9878 | italic |
| markup.bold | #ec9878 | bold |
| markup.underline | — | underline |
| markup.italic markup.bold, markup.bold markup.italic | — | bold italic |
| markup.raw | — | — |
| markup.raw.inline | — | — |
| meta.separator | #b4a89c | bold |
| markup.quote | #96b898 | italic |
| markup.list punctuation.definition.list.begin | #ffb454 | — |
| markup.inserted | #70bf56 | — |
| markup.changed | #d4a866 | — |
| markup.deleted | #f26d78 | — |
| markup.strike | #e6c08a | — |
| markup.strong | — | bold |
| markup.table | #deb074 | — |
| text.html.markdown markup.inline.raw | #f29668 | — |
| text.html.markdown meta.dummy.line-break | #b4a89c | — |
| punctuation.definition.markdown | #b4a89c | — |
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}!`;
}