Pastel Yumekawa Theme
Publisher: のいThemes in package: 1
パステル系でかわいくてゆめかわなVS Code/Cursorテーマ。視認性を保ちながら、夢見がちで可愛らしい色合いでコーディングを楽しめます。
パステル系でかわいくてゆめかわなVS Code/Cursorテーマ。視認性を保ちながら、夢見がちで可愛らしい色合いでコーディングを楽しめます。
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 | #A08FA8 | italic |
| keyword, storage.type, storage.modifier | #E91E96 | bold |
| string, string.quoted | #00A896 | — |
| constant.numeric, constant.language | #B85FC7 | — |
| entity.name.function, entity.name.method, meta.function-call | #FF6B9D | bold |
| entity.name.class, entity.name.type, support.type | #A855C7 | — |
| variable, variable.other | #8B7CC8 | — |
| entity.name.tag | #E91E96 | — |
| markup.heading | #E91E96 | bold |
| markup.heading.markdown | #E91E96 | bold |
| entity.other.attribute-name | #E91E96 | — |
| support.function, support.class | #00A896 | — |
| constant.character.escape, string.quoted string | #C77DD8 | — |
| invalid, invalid.illegal | #FF6B8A | bold |
| markup.bold, markup.italic | — | bold |
| markup.underline | — | underline |
| markup.strikethrough | — | strikethrough |
| meta.diff.header, markup.inserted | #00A896 | — |
| markup.deleted | #FF6B8A | — |
| markup.changed | #FF9F7A | — |
| markup.heading.markdown | #E91E96 | bold |
| markup.bold.markdown, markup.italic.markdown | #A855C7 | bold |
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}!`;
}