Monokai Supersaturated
Publisher: LimespyThemes in package: 1
Monokai theme taken to an extreme. Black background and extremely saturate colours.
Monokai theme taken to an extreme. Black background and extremely saturate 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 |
|---|---|---|
| meta.indexed-name.python | #9999FF | |
| meta.function-call.generic.python | #99FF99 | |
| keyword.operator.unpacking.arguments.python | #AAEE00 | |
| string.quoted.docstring.multi.python | #CCFF00 | |
| string | #FFCC00 | — |
| constant.numeric | #FF00FF | — |
| constant.language | #FF00AA | — |
| constant.character, constant.other | #CCC | — |
| variable | #FF0066 | |
| keyword | #FF0066 | bold |
| storage | #DD0022 | bold |
| storage.type | #00FFEE | |
| entity.name.class | #99FF00 | underline |
| entity.other.inherited-class | #88FF00 | underline |
| entity.name.function | #AAEE00 | |
| variable.parameter | #FF9900 | |
| variable.language | #99FF00 | |
| variable.language.special.self.python | #00FFEE | |
| variable.parameter.function.language.special.self.python | #00FFEE | |
| entity.name.tag | #FF0066 | bold |
| entity.other.attribute-name | #AAEE00 | |
| support.function | #66D9EF | |
| support.constant | #66D9EF | |
| support.type, support.class | #66D9EF | |
| support.other.variable | — | |
| invalid | #FF6666 | bold |
| invalid.deprecated | #ee9966 | bold |
| meta.structure.dictionary.json, string.quoted.double.json | #CFCFC2 | — |
| meta.diff, meta.diff.header | #75715E | — |
| markup.deleted | #F92672 | — |
| markup.inserted | #A6E22E | — |
| markup.changed | #E6DB74 | — |
| constant.numeric.line-number.find-in-files - match | #AE81FFA0 | — |
| entity.name.filename.find-in-files | #E6DB74 | — |
| heading.1.markdown | #A6E22E | bold |
| punctuation.definition.heading.markdown | #A6E22E | — |
| entity.name.section.markdown | #A6E22E | — |
| punctuation.definition.list.begin.markdown | #AE81FF | — |
| meta.image.inline.markdown | #E6DB74 | — |
| markup.bold.markdown | #FFFFFF | bold |
| markup.italic.markdown | #FFFFFF | italic |
| markup.inline.raw.string.markdown | #66D9EF | — |
| meta.separator.markdown | #8F8F8F | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end | #AE81FF | — |
| variable.other.object, punctuation.accessor, meta.brace.round, variable.other.readwrite, punctuation.separator.comma | #FFFFFF | — |
| comment | #11CC00 | |
| string | #FFCC00 | — |
| constant.numeric | #FF00FF | |
| constant.language | #FF00AA | — |
| constant.character, constant.other | #CCCCCC | — |
| variable | #FF0066 | |
| keyword | #FF0066 | bold |
| storage | #DD0022 | bold |
| storage.type | #00FFEE | |
| entity.name.class | #99FF00 | underline |
| entity.other.inherited-class | #99FF00 | underline |
| entity.name.function | #AAEE00 | |
| variable.parameter | #FF9900 | |
| entity.name.tag | #FF0066 | bold |
| entity.other.attribute-name | #AAEE00 | |
| support.function | #00FFEE | |
| support.constant | #00AAFF | |
| support.type, support.class | #00AAFF | |
| support.other.variable | #FF0066 | |
| meta.structure.dictionary.json, string.quoted.double.json | #CFCFC2 | — |
| meta.diff, meta.diff.header | #75715E | — |
| markup.inserted | #AAEE00 | — |
| markup.changed | #EEDD00 | — |
| constant.numeric.line-number.find-in-files - match | #CC00FFA0 | — |
| entity.name.filename.find-in-files | #EEDD00 | — |
| heading.1.markdown | #99FF00 | bold |
| punctuation.definition.heading.markdown | #AAEE00 | — |
| entity.name.section.markdown | #AAEE00 | — |
| punctuation.definition.list.begin.markdown | #FF00FF | — |
| meta.image.inline.markdown | #EEDD00 | — |
| markup.bold.markdown | #FFFFFF | bold |
| markup.italic.markdown | #FFFFFF | italic |
| markup.inline.raw.string.markdown | #00FFEE | — |
| meta.separator.markdown | #8F8F8F | — |
| punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end | #FF00FF | — |
| variable.other.object, punctuation.accessor, meta.brace.round, variable.other.readwrite, punctuation.separator.comma | #FFFFFF | — |
| token.info-token | #6699EE | — |
| token.warn-token | #CC9900 | — |
| token.error-token | #FF4444 | — |
| token.debug-token | #BB66EE | — |
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}!`;
}