Winter CMS Theme
Publisher: Winter CMSThemes in package: 1
A Visual Studio Code theme based on the branding colors of Winter CMS
A Visual Studio Code theme based on the branding colors of Winter CMS
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 | #84878f | — |
| string, constant.other.symbol, string.quoted | #a3ce57 | — |
| string.regexp | #49c3c5 | — |
| constant.character, constant.other | #49c3c5 | — |
| constant.character.format | #49c3c5 | |
| constant.other.caps | #49c3c5 | |
| variable.parameter.function.language.special.self | #e0b627 | — |
| constant.numeric | #92b1ff | — |
| constant.language | #92b1ff | — |
| meta.constant, entity.name.constant | #92b1ff | — |
| variable | #bdc1ca | — |
| variable.member | #c5a0fb | — |
| variable.language | #49c3c5 | — |
| storage, storage.type.keyword | #e0b627 | — |
| keyword | #e0b627 | — |
| source.java meta.class.java meta.class.identifier.java storage.type.java | #e0b627 | — |
| keyword.operator | #ff9396 | |
| punctuation.separator, punctuation.terminator, punctuation.semi | #84878f | — |
| punctuation.section | #bdc1ca | — |
| punctuation.accessor | #ff9396 | — |
| punctuation.definition.template-expression | #e0b627 | — |
| punctuation.section.interpolation | #e0b627 | — |
| source.java storage.type, source.haskell storage.type, source.c storage.type, source.zig storage.type | #5dbded | |
| entity.other.inherited-class | #49c3c5 | — |
| storage.type.function.arrow | #e0b627 | |
| source.java storage.type.primitive | #49c3c5 | — |
| entity.name.function | #ff9e51 | — |
| variable.parameter, meta.parameter | #92b1ff | — |
| variable.function, variable.annotation, meta.function-call.generic, support.function.go | #ff9e51 | — |
| support.function, support.macro | #c5a0fb | — |
| entity.name.import, entity.name.package | #a3ce57 | — |
| entity.name, source.js meta.function-call.constructor variable.type, support.class.component.vue | #5dbded | |
| entity.name.tag, meta.tag.sgml | #49c3c5 | — |
| punctuation.definition.tag.end, punctuation.definition.tag.begin, punctuation.definition.tag | #5c9b9f | — |
| entity.other.attribute-name | #ff9e51 | — |
| support.constant | #ff9396 | — |
| support.type, support.class, source.go storage.type | #49c3c5 | — |
| meta.decorator variable.other, meta.decorator punctuation.decorator, storage.type.annotation, variable.annotation, punctuation.definition.annotation | #92b1ff | — |
| invalid | #ff8d90 | — |
| meta.diff, meta.diff.header | #a3ce57 | — |
| source.ruby variable.other.readwrite | #ff9e51 | — |
| 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 | #5dbded | — |
| source.css support.type, source.sass support.type, source.scss support.type, source.less support.type, source.stylus support.type | #84878f | — |
| support.type.property-name | #49c3c5 | |
| constant.numeric.line-number.find-in-files - match | #84878f | — |
| constant.numeric.line-number.match | #e0b627 | — |
| entity.name.filename.find-in-files | #a3ce57 | — |
| message.error | #ff8d90 | — |
| markup.heading, markup.heading entity.name | #a3ce57 | bold |
| markup.underline.link, string.other.link | #5dbded | — |
| markup.italic | #c5a0fb | — |
| markup.bold | #c5a0fb | bold |
| markup.italic markup.bold, markup.bold markup.italic | — | bold italic |
| meta.separator | #84878f | bold |
| markup.quote | #49c3c5 | — |
| markup.list punctuation.definition.list.begin | #ff9e51 | — |
| markup.inserted | #a1c861 | — |
| markup.changed | #8bacfe | — |
| markup.deleted | #ff8d90 | — |
| markup.strike | #92b1ff | — |
| markup.table | #49c3c5 | — |
| text.html.markdown markup.inline.raw | #ff9396 | — |
| text.html.markdown meta.dummy.line-break | #84878f | — |
| punctuation.definition.markdown | #84878f | — |
| token.info-token | #8bacfe | — |
| token.warn-token | #e5b700 | — |
| token.error-token | #ff8d90 | — |
| token.debug-token | #bfa0ee | — |
| variable.other.enummember | #c5a0fb | — |
| keyword.operator.key-value.rust, punctuation.comma.rust | #84878f | — |
| meta.attribute.rust | #92b1ff | — |
| entity.name.function.preprocessor | #ff9e51 | — |
| entity.name.label | #c5a0fb | — |
| meta.decorator.ts entity.name.function | #92b1ff | — |
| source.json meta.structure.dictionary.json support.type.property-name.json | #c5a0fb | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #ff9396 | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #ff9e51 | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #e0b627 | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #a3ce57 | — |
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}!`;
}