Default Dark+ IntelliJ Theme
Publisher: Niccolò MineoThemes in package: 1
A theme extension coupling the IntelliJ syntax colour scheme with improved VSCode's Default Dark+ UI colours.
A theme extension coupling the IntelliJ syntax colour scheme with improved VSCode's Default Dark+ UI colours.
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 |
|---|---|---|
| entity.name.class, entity.name.type, meta.return-type, storage.type.annotation.groovy, storage.type.annotation.java, storage.type.cs, storage.type.generic.cs, storage.type.generic.groovy, storage.type.generic.java, storage.type.groovy, storage.type.java, storage.type.modifier.cs, storage.type.object.array.groovy, storage.type.object.array.java, storage.type.parameters.groovy, storage.type.primitive.array.groovy, storage.type.primitive.array.java, storage.type.primitive.groovy, storage.type.primitive.java, storage.type.token.java, storage.type.variable.cs, support.class, support.type, meta.type.cast.expr, meta.type.new.expr, support.constant.dom, support.constant.json, support.constant.math | #4EC9B0 | — |
| entity.name.class, entity.name.type, support.class, support.type, punctuation.definition.tag, entity.name.tag, entity.name.function.python, meta.function-call.generic.python, entity.name.function, support.constant.handlebars, support.function | #FFC66D | — |
| storage.modifier.import.java, storage.modifier.package.java | #d4d4d4 | — |
| beginning.punctuation.definition.quote.markdown | #608b4e | — |
| constant.regexp | #646695 | — |
| header | #000080 | — |
| constant.other.color.rgb-value, constant.other.rgb-value, support.constant.color, support.constant.font-name, support.constant.media, support.constant.media-type, support.constant.property-value, markup.deleted, markup.inline.raw, meta.preprocessor.string | #CE9178 | — |
| markup.italic, emphasis | — | italic |
| markup.underline | — | underline |
| constant.sha.git-rebase, keyword.other.unit, markup.inserted, meta.preprocessor.numeric | #b5cea8 | — |
| storage | #cc3232 | — |
| string, string.regexp, string.tag, string.value | #639250 | — |
| token.debug-token | #b267e6 | — |
| token.error-token, invalid | #f44747 | — |
| token.info-token, beginning.punctuation.definition.list.markdown | #6796e6 | — |
| token.warn-token | #cd9731 | — |
| constant.numeric | #6897BB | — |
| entity.name.type.instance.jsdoc, keyword.other.phpdoc.php, keyword.other.type.php, storage.type.class.jsdoc, variable.other.jsdoc, comment | #808080 | — |
| entity.other.attribute-name.attribute.scss, 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, entity.other.attribute-name.scss, source.css.less entity.other.attribute-name.id, entity.name.tag.css, meta.selector | #d7ba7d | — |
| strong, keyword.control, constant.language, keyword, meta.diff.header, meta.preprocessor, storage.modifier, storage.type, keyword.operator.cast, keyword.operator.expression, keyword.operator.logical.python, keyword.operator.new, keyword.operator.sizeof, punctuation.section.embedded.begin.metatag.php, punctuation.section.embedded.end.metatag.php | — | bold |
| keyword.control, constant.language, keyword, meta.diff.header, meta.preprocessor, storage.modifier, storage.type, keyword.operator.cast, keyword.operator.expression, keyword.operator.logical.python, keyword.operator.new, keyword.operator.sizeof, punctuation.section.embedded.begin.metatag.php, punctuation.section.embedded.end.metatag.php | #CC7832 | — |
| support.type.property-name, support.type.vendored.property-name, variable, variable.css, variable.other.less, variable.scss, support.function.magic.python, meta.object-literal.key entity.name.function, meta.object-literal.key, variable.language.special.self.python, variable.parameter.function.language.special.self.python, meta.structure.dictionary.key.python, support.function.git-rebase, entity.other.inherited-class, support.variable.property.dom, variable.other.property, variable.other.readwrite, variable.other.readwrite.alias | #9476a5 | — |
| entity.name.type.module, meta.function-call, support.class.dom, variable.other.object, variable.other.object.property, keyword.operator, entity.other.attribute-name, markup.bold, markup.changed, markup.heading, variable.other.constant.ts, variable.parameter, meta.definition.variable.name, support.variable, source.python, punctuation.definition.template-expression.begin.js, punctuation.definition.template-expression.begin.ts, punctuation.definition.template-expression.end.js, punctuation.definition.template-expression.end.ts, storage.type.function.arrow | #bebebe | — |
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}!`;
}