Deep Water
Publisher: bDesignedThemes in package: 4
A color theme based on the colors of the ocean 🌊
A color theme based on the colors of the ocean 🌊
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 | #4b6869 | — |
| entity.other.attribute-name.class.css, entity.other.attribute-name.id.css, source.css, string.template meta.template.expression, keyword, storage.type, storage.modifier, string.json, support.type.property-name.json.comments, support.type.property-name.json, support.type.object.module.js, support.type.vendored.property-name.css, variable.language.this | #01779b | — |
| string.other.link.title.markdown, support.type.property-name, variable.other.object | #78fade | — |
| markup.underline.link.image.markdown, markup.underline.link.markdown, constant.language, punctuation.definition.constant, variable.other.constant, constant.character, constant.other, variable.instance, variable.other.instance, variable.readwrite.instance, variable.other.readwrite.instance, variable.other.property, variable.other.object.property, variable.other.readwrites, meta.definition.variable, variable.other.readwrite.js, variable.other.meta.import.js, meta.import.js variable.other, variable.other.meta.export.js, meta.export.js variable.other, invalid.deprecated.entity.other.attribute-name | #17ADB0 | — |
| string.quoted, variable.parameter, entity.name.type, entity.name.type.js, entity.name.tag, markup.bold.markdown | #1CA0BE | — |
| constant.numeric, markup.italic.markdown, punctuation.definition.italic.markdown, punctuation.definition.metadata.markdown | #6CC1D9 | — |
| entity.name.function, entity.other.attribute-name, punctuation.definition.markdown, markup.fenced_code.block.markdown, markup.inline.raw.string.markdown, punctuation.definition.bold.markdown, string.quoted.double.json, string.template.js, support.class, support.constant, support.function, support.type, support.variable.property | #8CE6D0 | — |
| entity.name.section.markdown, punctuation.definition.heading.markdown, punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, markup.quote.markdown, meta.structure.dictionary.value.json string.quoted.double, punctuation.definition.string.json, meta.paragraph.markdown, meta.structure.dictionary.json meta.structure.dictionary.value constant.language, source.json support, source.svelte, text.html.markdown, text.html | #A5DEE0 | — |
| punctuation.definition.string | #EAF0EF | — |
| keyword.operator, storage, meta.brace.round.js, meta.brace.square.js, meta.var.expr, meta.class meta.method.declaration meta.var.expr storage.type.js, storage.type.property.js, storage.type.property.ts, punctuation.separator.key-value, punctuation.definition.array, punctuation.definition.block, punctuation.definition.list, punctuation.definition.metadata.markdown, punctuation.definition.string, punctuation.definition.dictionary, punctuation.definition.string.end.markdown, punctuation.definition.tag, punctuation.support.type.property-name.begin.json, meta.structure.dictionary.value.json, punctuation.support.type.property-name.end.json, punctuation.definition.parameters.begin.js, punctuation.definition.parameters.end.js, punctuation.terminator.statement, source, source.json string, source.json punctuation.definition.string | #f7f598 | — |
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}!`;
}