BADBUG Theme
Publisher: 1MANDEV.COMThemes in package: 4
🔥 A collection of beautifully crafted modern themes for VSCode. 🎨 + 👌
🔥 A collection of beautifully crafted modern themes for VSCode. 🎨 + 👌
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 | #82D8D8 | italic |
| constant | #FF628C | — |
| entity | #82D8D8 | — |
| invalid | #800F00 | — |
| keyword, storage.type.class.js | #E54B4B | — |
| meta | #9EFFFF | — |
| meta.brace | #9588AA | — |
| punctuation | #9588AA | — |
| punctuation.definition.parameters | #CBE56C | — |
| punctuation.definition.template-expression | #CBE56C | — |
| storage | #82D8D8 | — |
| storage.type.function.arrow | #82D8D8 | — |
| string, punctuation.definition.string | #CBE56C | — |
| string.template, punctuation.definition.string.template | #CBE56C | — |
| support | #CF256D | — |
| support.function | #FF9D00 | — |
| support.variable.property.dom | #B8B0C6 | — |
| variable | #B8B0C6 | — |
| source.css entity, source.stylus entity | #B8B0C6 | — |
| entity.other.attribute-name.id.css | #82D8D8 | — |
| entity.name.tag | #CF256D | — |
| source.css support, source.stylus support | #CBE56C | — |
| source.css constant, source.css support.constant, source.stylus constant, source.stylus support.constant | #82D8D8 | — |
| source.css string, source.css punctuation.definition.string, source.stylus string, source.stylus punctuation.definition.string | #82D8D8 | — |
| source.css variable, source.stylus variable | #9588AA | — |
| text.html.basic entity.name | #9588AA | — |
| meta.toc-list.id.html | #CBE56C | — |
| text.html.basic entity.other | #B8B0C6 | italic |
| meta.tag.metadata.script.html entity.name.tag.html | #B8B0C6 | — |
| punctuation.definition.string.begin, punctuation.definition.string.end | #92FC79 | — |
| source.ini entity | #E1EFFF | — |
| source.ini keyword | #524763 | — |
| source.ini punctuation.definition | #FFEE80 | — |
| source.ini punctuation.separator | #FF9D00 | — |
| source.js storage.type.function | #CF256D | — |
| variable.language, entity.name.type.class.js | #CF256D | — |
| entity.other.inherited-class.js | #CCCCCC | — |
| variable.parameter.function.language.special.self.python | #CF256D | — |
| source.json support | #B8B0C6 | — |
| source.json string, source.json punctuation.definition.string | #E1EFFF | — |
| punctuation.definition.heading.markdown | #E1EFFF | — |
| entity.name.section.markdown, markup.heading.setext.1.markdown, markup.heading.setext.2.markdown | #E54B4B | bold |
| meta.paragraph.markdown | #E1EFFF | — |
| beginning.punctuation.definition.quote.markdown | #524763 | — |
| markup.quote.markdown meta.paragraph.markdown | #9EFFFF | italic |
| meta.separator.markdown | #524763 | — |
| markup.bold.markdown | #9EFFFF | bold |
| markup.italic.markdown | #9EFFFF | italic |
| beginning.punctuation.definition.list.markdown | #524763 | — |
| string.other.link.title.markdown | #CBE56C | — |
| string.other.link.title.markdown, string.other.link.description.markdown, string.other.link.description.title.markdown | #CBE56C | — |
| markup.underline.link.markdown, markup.underline.link.image.markdown | #9EFFFF | — |
| fenced_code.block.language, markup.inline.raw.markdown | #9EFFFF | — |
| fenced_code.block.language, markup.inline.raw.markdown | #9EFFFF | — |
| text.jade entity.name | #9EFFFF | — |
| text.jade entity.other.attribute-name.tag | — | italic |
| text.jade string.interpolated | #FFEE80 | — |
| source.ts entity.name.type | #80FFBB | — |
| source.ts keyword | #524763 | — |
| source.ts punctuation.definition.parameters | #E1EFFF | — |
| meta.arrow.ts punctuation.definition.parameters | #FFEE80 | — |
| source.ts storage | #9EFFFF | — |
| source.php entity | #9EFFFF | — |
| variable.other.php | #524763 | — |
| modifier, this, comment, storage.modifier.js, entity.other.attribute-name.js | — | italic |
| entity.name.type.instance.js | #FF9D00 | underline |
| entity.name.class.js | #FF9D00 | underline |
| variable.other.class.js | #FF9D00 | underline |
| support.type.object.module.js | #FF9D00 | underline |
| comment, punctuation.definition.comment | #524763 | |
| token.info-token | #6796E6 | — |
| token.warn-token | #CD9731 | — |
| token.error-token | #F44747 | — |
| token.debug-token | #B267E6 | — |
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}!`;
}