Julia Color Themes
Publisher: Cameron BieganekThemes in package: 2
Color themes for the Julia language.
Color themes for the Julia language.
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, string.comment | #5c6370 | italic |
| string | #FFD945 | — |
| punctuation.definition.template-expression.begin.js,punctuation.definition.template-expression.end.js,punctuation.definition.template-expression.begin.ts,punctuation.definition.template-expression.end.ts | #FF3F4F | — |
| string.template.js | #E5A422 | — |
| meta.template.expression.js | #f8f8f0 | — |
| constant.numeric | #E373CE | — |
| string.embedded.begin, string.embedded.end | #E373CE | — |
| string.embedded | #98c379 | — |
| constant.language | #19D1E5 | — |
| constant.character, constant.other | #19D1E5 | — |
| variable.language | #FF3F4F | italic |
| variable.readwrite, variable.readwrite.other.block | #61afef | — |
| keyword, keyword.operator.logical, keyword.operator.constructor | #FF3F4F | italic |
| keyword.operator | #FF3F4F | italic |
| storage | #FF3F4F | italic |
| storage.type | #19D1E5 | — |
| entity.name.class, entity.name.module, entity.name.type, storage.identifier, support.class | #61afef | — |
| variable.other.object | #61afef | — |
| variable.other.property, variable.other.block | #f8f8f0 | — |
| entity.other.inherited-class | #81F900 | — |
| entity.name.function, support.function | #81F900 | — |
| variable.parameter | #FF9700 | italic |
| entity.name.function-call | #f8f8f0 | — |
| function.support.builtin, function.support.core | #81F900 | — |
| entity.name.tag, entity.name.tag.class.js, entity.name.tag.class.jsx | #FF3F4F | — |
| entity.name.tag.class, entity.name.tag.id | #19D1E5 | — |
| entity.other.attribute-name | #81F900 | — |
| support.constant | #19D1E5 | — |
| support.type, support.variable | #19D1E5 | — |
| support.dictionary.json | #19D1E5 | — |
| support.type.property-name.css, support.type.property-name.scss, support.type.property-name.less, support.type.property-name.sass | #6AEBF7 | — |
| support.constant.css, support.constant.scss, support.constant.less, support.constant.sass | #98c379 | — |
| variable.css, variable.scss, variable.less, variable.sass | #56b6c2 | — |
| variable.css.string, variable.scss.string, variable.less.string, variable.sass.string | #e5c07b | — |
| unit.css, unit.scss, unit.less, unit.sass | #c678dd | — |
| constant.numeric.css, constant.numeric.scss, constant.numeric.less, constant.numeric.sass | #E373CE | — |
| function.css, function.scss, function.less, function.sass | #56b6c2 | — |
| support.other.variable | — | |
| invalid | #F8F8F0 | — |
| invalid.deprecated | #F8F8F0 | — |
| structure.dictionary.property-name.json | #56b6c2 | — |
| string.detected-link | #61afef | — |
| meta.diff, meta.diff.header | #75715E | — |
| markup.deleted | #E542FF | — |
| markup.inserted | #e5c07b | — |
| markup.changed | #e5c07b | — |
| constant.numeric.line-number.find-in-files - match | #56b6c2A0 | — |
| entity.name.filename.find-in-files | #e5c07b | — |
| markup.italic, markup.italic.markdown | — | italic |
| punctuation.definition.italic.markdown | #696969 | |
| markup.underline.link.markdown | #61afef | — |
| markup.bold.markdown | — | bold |
| punctuation.definition.bold.markdown | #919191 | |
| markup.heading.markdown | #FF3F4F | bold |
| punctuation.definition.heading.markdown | #919191 | |
| markup.quote.markdown | #6FD80D | — |
| meta.separator.markdown | #E542FF | bold |
| markup.raw.inline.markdown, markup.raw.block.markdown | #56b6c2 | — |
| punctuation.definition.list_item.markdown | #ffffff | bold |
| source.julia meta.bracket | #FF8F3F | — |
| source.julia entity.name.function, source.julia keyword.operator.boolean | #AE81FF | — |
| source.julia keyword.operator | #FF3F4F | |
| source.julia keyword.operator.isa, source.julia keyword.operator.relation.in | #FF3F4F | italic |
| source.julia variable.interpolation | #F8F8F0FF | — |
| source.julia constant.language, source.julia constant.other, source.julia constant.numeric, source.julia constant.character, source.julia support.function.macro, source.julia support.type | #00AAFF | — |
| source.julia constant.other.symbol | #FD5FF0 | — |
| source.julia keyword.control.using, source.julia keyword.control.import | #81F900 | — |
| source.python storage.type, source.python constant.language, source.python constant.numeric, source.python constant.character | #00AAFF | — |
| source.python entity.name.function, source.python meta.function support.function | #AE81FF | — |
| source.python entity.name.type | #AE81FF | underline |
| source.python meta.function-call.generic, source.python meta.function-call support.type, source.python keyword.control.import | #81F900 | — |
| source.python punctuation | #5C6370 | — |
| source.python punctuation.separator.period, source.python punctuation.section, source.python punctuation.separator.colon, source.python punctuation.separator.dict, source.python punctuation.definition.decorator, source.python meta.function.decorator support.type, source.python meta.function.decorator entity.name.function | #FF3F4F | — |
| source.python punctuation.definition.string, source.python support.type, source.python meta.function-call meta.function-call.arguments support.type | #FFD945 | — |
| source.python keyword.operator.arithmetic | — | |
| source.python variable.parameter.function.language.special.self, source.python variable.language, source.python constant.other.caps | #FF00FF | — |
| source.python variable.parameter, source.python variable.parameter.function-call | #FF8F3F | — |
| source.python support.variable | #F8F8F0 | — |
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}!`;
}