Breeze
Publisher: cammisuliThemes in package: 6
A cool blue dark/light color theme
A cool blue dark/light color theme
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 |
|---|---|---|
| constant.numeric | #FF80AB | — |
| comment | #2CC02C | — |
| support.other.variable, string.other.link, string.regexp, entity.name.tag, entity.other.attribute-name, meta.tag, declaration.tag, punctuation.definition.template-expression, meta.template.expression | #2979FF | — |
| meta meta.type.annotation | #00B8D4 | — |
| meta meta.type.annotation meta.type.parameters, meta new.expr meta.type.parameters entity.name.type | #424242 | — |
| string | #F57F17 | — |
| entity.other.inherited-class | #00B8D4 | — |
| string.js.taggedTemplate, string.js.taggedTemplate punctuation.definition.string.template.end.js, string.js.taggedTemplate string.unquoted.html | #424242 | — |
| meta.function-call, support.function, keyword.other.special-method, meta.block-level | #00BFA5 | — |
| variable.other.object.property, variable.object.property, variable, meta.type.parameters entity.name.type | #424242 | — |
| keyword, storage, source meta.type.annotation.ts support.type.primitive.ts, entity.name.tag.css, meta.return.type | #2979FF | — |
| keyword.operator | #424242 | — |
| keyword.control.conditional, constant.language, support.class | #247ba0 | — |
| invalid | #424242 | |
| meta.separator | #424242 | — |
| invalid.deprecated | #424242 | |
| markup.inserted.diff, meta.diff.header.to-file | #718c00 | — |
| markup.deleted.diff, meta.diff.header.from-file | #c82829 | — |
| meta.diff.header.from-file, meta.diff.header.to-file | #424242 | — |
| meta.diff.range | #3e999f | — |
| markup.quote | #ffaf8f | — |
| markup.bold | — | bold |
| markup.italic | — | italic |
| markup.inline.raw | #FF9DA4 | |
| meta.decorator entity.name.function, punctuation.decorator | #ad8c6b | italic |
| entity.name.type.class, entity.name.type.interface | #424242 | — |
| keyword.operator.new | #2979FF | — |
| variable.language.this, support.variable.dom | #0da9c4 | — |
| support.type.property-name.json | #2979FF | — |
| entity.other.attribute-name.html | #333 | — |
| source.css variable | #00B8D4 | — |
| source.css.scss meta.property-value.scss, source.css meta.property-value.css, source.css keyword.other.unit | #2979FF | — |
| comment, entity.other.inherited-class, entity.other.attribute-name, meta.class meta.method.declaration meta.var.expr storage.type.js, meta.delimiter.period, meta.selector, entity.name.tag.doctype, meta.tag.sgml.doctype, italic, quote, source.elixir .punctuation.binary.elixir, meta.tag.sgml.doctype.html, markup.italic.markdown, variable.language.this, source.css.scss meta.property-value.scss, source.css meta.property-value.css, keyword.operator.new, keyword.control.conditional, meta.return.type | — | italic |
| entity.other.ng-binding-name.template.html | #e2ad5e | — |
| entity.other.ng-binding-name.property.html | #e2675e | — |
| entity.other.ng-binding-name.event.html | #7ecc25 | — |
| meta.tag.custom.start.html, meta.tag.custom.end.html, meta.tag.custom.start.html entity.name.tag.html, meta.tag.custom.end.html entity.name.tag.html | #064bbb | — |
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}!`;
}