MykeTheme
Publisher: entozoonThemes in package: 1
My bonkers personal color scheme, based loosely on the [previous Atom version](https://github.com/entozoon/atom-myke-theme-syntax) and the sublime one before that.
My bonkers personal color scheme, based loosely on the [previous Atom version](https://github.com/entozoon/atom-myke-theme-syntax) and the sublime one before that.
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 |
|---|---|---|
| Global settings | #ffffffaa | — |
| string | #6dda67 | — |
| constant.language.boolean | #DC7D58 | — |
| constant.numeric | #e5949b | — |
| variable, support.variable, support.class, support.constant, meta.definition.variable entity.name.function | #108FEF | — |
| keyword | #C17656 | — |
| modifier | #2566AA | — |
| variable.language.this | #b374fa | — |
| support.type.object | #ff00ff | — |
| constant.language | #00ff00ffccff | — |
| entity.name.function, support.function | #77cadd | — |
| storage.type | #DE627D | — |
| storage.modifier | #dcc258 | — |
| support.module, support.node | #108FEF | italic |
| support.type | #884D94 | — |
| entity.name.type | #f4a71a | — |
| entity.other.inherited-class | #f4a71a | — |
| comment | #7C3A84 | — |
| entity.name.type.class | #f4f900 | underline |
| variable.object.property | #21C5C7 | — |
| meta.definition.method entity.name.function | #21C5C7 | — |
| meta.function entity.name.function | #21C5C7 | — |
| template.expression.begin, template.expression.end | #00ccff | — |
| entity.name.tag.yaml | #108FEF | — |
| modifier | #ff00ff | — |
| meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json | #108FEF | — |
| constant.language.json | #00ccff | — |
| entity.other.attribute-name.class | #f2c460 | — |
| entity.other.attribute-name.id | #f2ab60 | — |
| source.css entity.name.tag | #63d84b | — |
| meta.tag, punctuation.definition.tag | #979797 | — |
| entity.name.tag | #cc6e51 | — |
| entity.other.attribute-name | #dfbc70 | — |
| markup.heading | #00ccff | — |
| text.html.markdown meta.link.inline, meta.link.reference | #108FEF | — |
| text.html.markdown markup.quote | #c0c0c0 | — |
| text.html.markdown beginning.punctuation.definition.list | #00ccff | — |
| markup.italic | #108FEF | italic |
| markup.bold | #108FEF | bold |
| markup.bold markup.italic, markup.italic markup.bold | #108FEF | italic bold |
| keyword.other.definition.ini | #108FEF | — |
| entity.name.section.group-title.ini | #00ccff | — |
| source.cs meta.class.identifier storage.type | #21C5C7 | underline |
| source.cs meta.method.identifier entity.name.function | #21C5C7 | — |
| source.cs meta.method-call meta.method, source.cs entity.name.function | #fff099 | — |
| source.cs storage.type | #4EB071 | — |
| source.cs meta.method.return-type | #4EB071 | — |
| source.cs meta.preprocessor | #DA6771 | — |
| source.cs entity.name.type.namespace | #ffffffaa | — |
| Global settings | #ffffffaa | — |
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}!`;
}