Landmannalaugar
Publisher: Dimitri NicolasThemes in package: 1
VSCode dark color theme inspired by Icelandic Landmannalaugar mountains
VSCode dark color theme inspired by Icelandic Landmannalaugar mountains
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 |
|---|---|---|
| invalid | #f44747 | — |
| comment | #add1b5 | — |
| constant.numeric, keyword.other.unit | #83cf80 | — |
| constant.language | #5ea9ff | italic |
| keyword.operator.new, keyword.operator.expression, keyword.operator.cast, keyword.operator.sizeof, keyword.operator.instanceof, keyword.operator.logical.python | #5ea9ff | — |
| constant.character.escape | #dcdcaa | — |
| constant.character.character-class.regexp, constant.other.character-class.set.regexp, constant.other.character-class.regexp, constant.character.set.regexp, string.regexp | #d16969 | — |
| keyword.operator.or.regexp, keyword.operator.quantifier.regexp, keyword.control.anchor.regexp | #dcdcaa | — |
| punctuation.definition.group.regexp, punctuation.definition.group.assertion.regexp, punctuation.definition.character-class.regexp, punctuation.character.set.begin.regexp, punctuation.character.set.end.regexp, keyword.operator.negation.regexp, support.other.parenthesis.regexp | #f5a678 | — |
| keyword.other | #83cf80 | italic |
| string, string.tag, string.value | #f5a678 | — |
| storage, storage.type, storage.modifier | #5ea9ff | — |
| keyword.control.import, keyword.control.from, keyword.control.export | #db6fa5 | — |
| keyword.control, keyword.control.flow, keyword.operator.expression | #c76c74 | — |
| entity.name.function, support.function | #fae18e | — |
| meta.return-type, support.class, support.type, entity.name.type, entity.name.class, entity.other.inherited-class | #35d190 | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end, punctuation.section.embedded | #5ea9ff | — |
| variable, meta.definition.variable.name, meta.object-literal.key, support.variable, entity.name.variable | #aae8f3 | — |
| variable.language | #5ea9ff | — |
| entity.name.tag.html, meta.tag.metadata.doctype.html | #fae18e | — |
| meta.attribute | #d2edf1 | — |
| meta.attribute.class.html | #aae8f3 | italic |
| meta.attribute.id.html | #69e0f5 | bold |
| punctuation.definition.tag | #808080 | — |
| entity.name.tag.css, entity.other.attribute-name.class.css, entity.other.attribute-name.class.mixin.css, entity.other.attribute-name.id.css, entity.other.attribute-name.parent-selector.css, entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-element.css, source.css.less entity.other.attribute-name.id, entity.other.attribute-name.scss, entity.name.tag.reference.scss | #fae18e | — |
| entity.other.attribute-name.pseudo-class.css | #fab08e | — |
| entity.other.attribute-name.pseudo-element.css | — | italic |
| variable.scss | #ec9a9a | italic |
| support.type.property-name, meta.property-name, entity.name.tag.css | #aae8f3 | — |
| punctuation.section.property-list.begin.bracket.curly.scss, punctuation.section.property-list.end.bracket.curly.scss, punctuation.definition.attribute-selector.begin.bracket.square, punctuation.definition.attribute-selector.end.bracket.square, entity.other.attribute-name.attribute.scss | #d4d4d4 | — |
| meta.property-value.scss, support.constant.property-value, support.constant.font-name, support.constant.media-type, support.constant.media, constant.other.color.rgb-value, constant.other.rgb-value, support.constant.color | #f5a678 | — |
| meta.attribute-selector.scss | #f5a678 | — |
| strong, markup.bold | #5ea9ff | bold |
| emphasis, markup.italic | — | italic |
| markup.underline | — | underline |
| markup.inserted | #83cf80 | — |
| markup.deleted | #f5a678 | — |
| markup.changed | #fae18e | — |
| beginning.punctuation.definition.quote.markdown | #6A9955 | — |
| beginning.punctuation.definition.list.markdown | #5ea9ff | — |
| markup.inline.raw | #fae18e | — |
| meta.link.reference | #aae8f3 | — |
| punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, string.other.link.title.markdown | #f5a678 | — |
| markup.underline.link | #d4d4d4 | — |
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}!`;
}