vscode-theme-elaina
Publisher: SigureMoThemes in package: 1
「澄み渡った青空をゆく、そこに人がいたのなら間違いなく誰もが振り返り、ため息をこぼしてしまうほどの美貌の魔女は、いったい誰でしょう?」
「澄み渡った青空をゆく、そこに人がいたのなら間違いなく誰もが振り返り、ため息をこぼしてしまうほどの美貌の魔女は、いったい誰でしょう?」
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, markup.quote.markdown, meta.diff, meta.diff.header | #a0a1a7cc | — |
| meta.template.expression.js, constant.name.attribute.tag.jade, punctuation.definition.metadata.markdown, punctuation.definition.string.end.markdown, punctuation.definition.string.begin.markdown | #E0E2F0 | — |
| string, text.html.php string, markup.inline.raw, markup.inserted, punctuation.definition.string, punctuation.definition.markdown, text.html meta.embedded source.js string, text.html.php punctuation.definition.string, text.html meta.embedded source.js punctuation.definition.string, text.html punctuation.definition.string, text.html string | #96E072 | — |
| string.quoted.docstring punctuation.definition.string.begin.python, string.quoted.docstring, string.quoted.docstring punctuation.definition.string.end.python, comment.block.javadoc, comment.line.documentation.rust, comment.block.documentation | #8ca777 | italic |
| source.regexp, string.regexp, string.regexp.quoted.multi punctuation.definition.string.begin.python, string.regexp.quoted.multi punctuation.definition.string.end.python | #7cb7ff | — |
| meta.import.js string.quoted, meta.import.ts string.quoted, meta.import.jsx string.quoted, meta.import.tsx string.quoted, storage.modifier.import.java, storage.modifier.package.java, meta.use.rust entity.name.namespace.rust, entity.name.module.rust, meta.preprocessor.include.c punctuation.definition.string.begin.c, meta.preprocessor.include.c string.quoted, meta.preprocessor.include.c punctuation.definition.string.end.c, meta.preprocessor.include.cpp punctuation.definition.string.begin.cpp, meta.preprocessor.include.cpp string.quoted, meta.preprocessor.include.cpp punctuation.definition.string.end.cpp, entity.name.import.go, entity.name.package.go | #55c9ff | — |
| variable, identifier | #00e8c6 | — |
| meta.structure.dictionary.json support.type.property-name, entity.name.tag.yaml, support.type.property-name.table.toml, support.type.property-name.toml, constant.character.entity.html, source.css entity.name.tag.reference, source.css entity.other.attribute-name.parent-selector, beginning.punctuation.definition.list.markdown, meta.object-literal.key | #00e8c6 | — |
| markup.heading, variable.language.this.js, variable.language.this.ts, variable.language.this.cpp, variable.language.self.rust, variable.language.special.self.python | #ff00aa | — |
| constant.numeric | #147eff | — |
| variable.other.property, entity.other.attribute-name, source.css keyword.other.unit, variable.other.object.property.js.jsx, variable.other.object.js | #c74ded | — |
| support.type.exception.python | #ee5d43 | — |
| constant, support.constant | #f39c12 | — |
| keyword.operator | #ee5d43 | — |
| support.class | #0cae00 | — |
| entity.name.function, source.css support.function, source.php support.function, meta.function-call, support.function.magic.python | #FFE66D | — |
| entity.name.type, support.type.python | #0cae00 | — |
| entity.name.tag, tag.html | #f92672 | — |
| keyword | #ff00aa | — |
| storage | #ff00aa | — |
| markup.bold | #f39c12 | bold |
| markup.italic | #7cb7ff | italic |
| punctuation.definition.math.begin.markdown, punctuation.definition.math.end.markdown | #7cb7ff | — |
| meta.link, meta.image, source.js support.type | #c74ded | — |
| *url*, *link*, *uri* | — | underline |
| entity.other.inherited-class | — | underline |
| comment, invalid, keyword, entity.other.attribute-name | — | italic |
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}!`;
}