Meu Tema Claro/Escuro Colorido
🎨 81 Opções de Temas - Porque escolher é viver!
🎨 81 Opções de Temas - Porque escolher é viver!
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 | #006600 | — |
| string | #ff3300 | — |
| entity.name.function | #0033cc | — |
| variable | #990099 | — |
| keyword | #ff0066 | — |
| constant | #990000 | — |
| constant.numeric | #333399 | — |
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 | #aaa | italic |
| string | #f20 | bold |
| entity.name.function | #0000ff | bold |
| variable | #800080 | bold |
| keyword | #ff1493 | bold |
| constant | #8b0000 | bold |
| constant.numeric | #483d8b | bold |
| support.type.property-name.json | #09F | bold |
| string.quoted.double | #ff1493 | bold |
| support.type.property-name.css | #09F | bold |
| constant.numeric.css | #09F | bold |
| entity.name.tag.html | — | — |
| entity.other.attribute-name.html | #0000ff | bold |
| string.quoted.double.html | #f20 | bold |
| comment.block.html | #aaa | italic |
| text.html.basic | #800080 | — |
| markdown.heading | #ff1493 | bold |
| markdown.italic | #800080 | italic |
| markdown.bold | #0000ff | bold |
| markdown.quote | #aaa | italic |
| markdown.list, markdown.list.numbered, markdown.list.unnumbered | #483d8b | bold |
| markdown.code | #09F | bold |
| markup.inline.raw | #f20 | bold |
| constant.character.entity.html | #483d8b | bold |
| meta.tag.metadata.script.html | #09F | bold |
| entity.name.tag.script.html | #ff1493 | bold |
| source.python | — | bold |
| storage.type.function.python | #0000ff | bold |
| keyword.control.python | #ff1493 | bold |
| string.quoted.single.python | #800080 | bold |
| storage.type.java | #ff1493 | bold |
| storage.modifier.java | #ff1493 | bold |
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 | #006400 | — |
| string | #ff4500 | — |
| entity.name.function | #0000ff | — |
| variable | #8a2be2 | — |
| keyword | #ff1493 | — |
| constant | #8b0000 | — |
| constant.numeric | #483d8b | — |
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 |
|---|---|---|
| string | #FFA07A | — |
| entity.name.function | #8AC4D0 | — |
| variable | #EAB0D1 | — |
| keyword | #FF6347 | — |
| constant | #BA55D3 | — |
| constant.numeric | #BDB76B | — |
| punctuation.definition, punctuation.separator, punctuation.terminator | #F8ECC2 | — |
| entity.name.type, storage.type | #FFD700 | — |
| entity.name | #FF4500 | — |
| meta.attribute-name | #20B2AA | — |
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}!`;
}
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}!`;
}