vscode_blender_nokto
Publisher: Cyrill VitkovskiyThemes in package: 1
VSCode theme that matches my Blender Adapta Nokto theme
VSCode theme that matches my Blender Adapta Nokto theme
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, punctuation.definition.comment | #546E7A | italic |
| string.quoted.docstring.multi.python, punctuation.definition.string.end.python, punctuation.definition.string.begin.python | #51b97d | italic |
| variable, string constant.other.placeholder | #ffffffdd | — |
| constant.other.color | #ffffffdd | — |
| invalid, invalid.illegal | #ff0000 | — |
| keyword, storage.type, storage.modifier | #00ffffaa | — |
| keyword.control, constant.other.color, punctuation, meta.tag, punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, punctuation.section.embedded, keyword.other.template, keyword.other.substitution | #00fefebb | — |
| entity.name.tag, meta.tag.sgml, markup.deleted.git_gutter | #43fda2aa | — |
| variable.function, support.function, keyword.other.special-method | #00fefebb | — |
| entity.name.function | #ffffffdd | — |
| variable.parameter.function.language.special.self.python | #ff8af3 | — |
| meta.function-call | #ffffffdd | — |
| meta.block variable.other | #f07171 | — |
| support.other.variable, string.other.link | #e571f0aa | — |
| constant.numeric, constant.language, support.constant, constant.character, constant.escape, variable.parameter, keyword.other.unit, keyword.other | #ffffffdd | — |
| string, constant.other.symbol, constant.other.key, entity.other.inherited-class, markup.heading, markup.inserted.git_gutter, meta.group.braces.curly | #43ffa4aa | — |
| entity.name, support.type, support.class, meta.use.php, markup.changed.git_gutter, support.type.sys-types | #ff8af3 | — |
| support.type | #B2CCD6 | — |
| variable.language | #ff8af3 | italic |
| entity.other.attribute-name | #C792EA | — |
| markup.inserted | #C3E88D | — |
| markup.deleted | #ff00e5 | — |
| markup.changed | #C792EA | — |
| string.regexp | #89DDFF | — |
| constant.character.escape | #89DDFF | — |
| *url*, *link*, *uri* | — | underline |
| support.type.python, entity.name.function.decorator.python, punctuation.definition.decorator.python | #f78cf4da | italic |
| source.json meta.structure.dictionary.json support.type.property-name.json | #ffffffff | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #ffffffbb | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #ffffff88 | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #ffffff66 | — |
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}!`;
}