Azure Color Theme
Publisher: usetheplatformThemes in package: 2
A color theme inspired by Framer Syntax and Ayu Dark
A color theme inspired by Framer Syntax and Ayu Dark
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 |
|---|---|---|
| — | #b3b1ad | — |
| comment | #6A737D | italic |
| constant.unit | #000E16 | — |
| string, punctuation.definition.string, constant.other.symbol | #2aa198 | — |
| string.regexp, constant.character, constant.other | #2aa198 | — |
| constant.numeric | #2aa198 | — |
| constant.language | #2aa198 | — |
| variable | #000E16 | — |
| variable.member | #000E16 | — |
| variable.language | #268bd2 | italic |
| storage, constant.type-constructor | #b58900 | — |
| keyword | #859900 | — |
| meta.declaration.module keyword.other | #859900 | — |
| keyword.operator, keyword.other, keyword.pipe, keyword.unused, punctuation | #000E16 | — |
| punctuation.separator, punctuation.terminator | #000E16 | — |
| punctuation.section | #000E16 | — |
| punctuation.accessor | #000E16 | — |
| source.java storage.type, source.haskell storage.type, source.c storage.type | #b58900 | — |
| entity.other.inherited-class | #b58900 | — |
| storage.type.function | #000E16 | — |
| source.java storage.type.primitive | #b58900 | — |
| meta.function.type-declaration | #1293D8 | — |
| entity.name.function.top_level, source.js entity.name.function, source.ts entity.name.function, source.tsx entity.name.function, source.jsx entity.name.function | #1293D8 | — |
| variable.parameter, meta.parameter | #000E16 | — |
| variable.function, variable.annotation, meta.function-call.generic, support.function.go | #000E16 | — |
| meta.function.type-declaration meta.module.name | #b58900 | — |
| support.function, support.macro | #000E16 | — |
| entity.name.import, entity.name.package | #2aa198 | — |
| entity.name.type | #b58900 | — |
| entity.name.record.field | #000E16 | — |
| entity.name.tag, meta.tag.sgml | #1293D8 | — |
| punctuation.definition.tag.end, punctuation.definition.tag.begin, punctuation.definition.tag | #777 | — |
| entity.other.attribute-name | #2aa198 | — |
| support.constant | #2aa198 | italic |
| support.type, source.go storage.type | #b58900 | — |
| support.class | #1293D8 | — |
| meta.decorator variable.other, meta.decorator punctuation.decorator, storage.type.annotation | #b58900 | — |
| invalid | #CD3131 | — |
| meta.diff, meta.diff.header | #c594c5 | — |
| source.ruby variable.other.readwrite | #1293D8 | — |
| 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 | #1293D8 | — |
| source.css support.type, source.sass support.type, source.scss support.type, source.less support.type, source.stylus support.type | #000E16 | — |
| support.type.property-name | #000E16 | normal |
| constant.numeric.line-number.find-in-files - match | #000E16 | — |
| constant.numeric.line-number.match | #268bd2 | — |
| entity.name.filename.find-in-files | #2aa198 | — |
| message.error | #CD3131 | — |
| markup.heading, markup.heading entity.name | #2aa198 | bold |
| markup.underline.link, string.other.link | #268bd2 | — |
| markup.italic | #f07178 | italic |
| markup.bold | #f07178 | bold |
| markup.italic markup.bold, markup.bold markup.italic | — | bold italic |
| markup.raw | — | — |
| markup.raw.inline | — | — |
| meta.separator | #000E16 | bold |
| markup.quote | #2aa198 | italic |
| markup.list punctuation.definition.list.begin | #1293D8 | — |
| markup.inserted | #2aa198 | — |
| markup.changed | #1293D8 | — |
| markup.deleted | #d96c75 | — |
| markup.strike | #e6b673 | — |
| markup.table | #1293D8 | — |
| text.html.markdown markup.inline.raw | #FF66BB | — |
| text.html.markdown meta.dummy.line-break | #626a73 | — |
| punctuation.definition.markdown | #626a73 | — |
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}!`;
}