Tropical Theme
Publisher: JuliafinThemes in package: 1
A tropical theme with Bright vivid colors for readability
A tropical theme with Bright vivid colors for readability
Full workbench mockup using this variant's colors and tokenColors.
Loading...
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| — | #dedfdef7 | — |
| comment, string.comment | #b6b8bd | italic |
| string | #f5f27c | — |
| constant.numeric | #cdffa3 | — |
| string.embedded.begin, string.embedded.end | #c678dd | — |
| string.embedded | #61d60d | — |
| constant.language | #9ff96c | — |
| constant.character, constant.other | #5be9fb | — |
| variable.language | #8b5efe | — |
| variable.readwrite, variable.readwrite.other.block | #4cb4ff | — |
| keyword, keyword.operator.logical, keyword.operator.constructor | #e73844 | — |
| keyword.operator | #df1a29 | — |
| storage | #e06c75 | — |
| storage.type | #ff32d6 | — |
| entity.name.class, entity.name.module, entity.name.type, storage.identifier, support.class | #ff8c69 | — |
| variable.other.object | #2fd4ff | — |
| variable.other.property, variable.other.block | #c5d9ff | — |
| entity.other.inherited-class | #83e83c | — |
| entity.name.function, support.function | #73f99a | — |
| variable.parameter | #aaff53 | italic |
| entity.name.function-call | #c9dcff | — |
| function.support.builtin, function.support.core | #98c379 | — |
| entity.name.tag, entity.name.tag.class.js, entity.name.tag.class.jsx | #e5848c | — |
| entity.name.tag.class, entity.name.tag.id | #56b6c2 | — |
| entity.other.attribute-name | #98c379 | — |
| support.constant | #56b6c2 | — |
| support.type, support.variable | #56b6c2 | — |
| support.dictionary.json | #56b6c2 | — |
| support.type.property-name.css, support.type.property-name.scss, support.type.property-name.less, support.type.property-name.sass | #4182ff | — |
| support.constant.css, support.constant.scss, support.constant.less, support.constant.sass | #98c379 | — |
| variable.css, variable.scss, variable.less, variable.sass | #56b6c2 | — |
| variable.css.string, variable.scss.string, variable.less.string, variable.sass.string | #e5c07b | — |
| unit.css, unit.scss, unit.less, unit.sass | #c678dd | — |
| function.css, function.scss, function.less, function.sass | #56b6c2 | — |
| support.other.variable | — | |
| invalid | #B4BAB85A | — |
| invalid.deprecated | #F8F8F0 | — |
| structure.dictionary.property-name.json | #56b6c2 | — |
| string.detected-link | #61afef | — |
| meta.diff, meta.diff.header | #75715E | — |
| markup.deleted | #c678dd | — |
| markup.inserted | #e5c07b | — |
| markup.changed | #e5c07b | — |
| constant.numeric.line-number.find-in-files - match | #56b6c2A0 | — |
| entity.name.filename.find-in-files | #e5c07b | — |
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}!`;
}