DS Temas
Publisher: FelipeSantos92DevThemes in package: 10
Temas desenvolvidos com base nas cores preferenciais dos alunos do curso de Desenvolvimento de Sistemas de Valinhos
Temas desenvolvidos com base nas cores preferenciais dos alunos do curso de Desenvolvimento de Sistemas de Valinhos
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, string.quoted.docstring.multi, comment.block.documentation source | #777777 | italic |
| constant, support.constant.core.php | #A9A9FF | — |
| constant.numeric, constant.language, constant.character, constant.other | #7EB6FF | — |
| variable, variable.language, variable.other.readwrite, variable.parameter, meta.method.body, entity.name.variable, punctuation.definition.variable | #E0E0E0 | — |
| entity.name.function.decorator, meta.decorator entity.name.function, meta.decorator punctuation.decorator, punctuation.definition.decorator, meta.decorator variable.other.readwrite.ts, variable.parameter.gdscript, entity.name.variable.parameter, variable.parameter | #BBBBBB | — |
| keyword, keyword.control, keyword.control.conditional, keyword.control.import, keyword.control.export, keyword.control.flow, keyword.control.from, keyword.control.return, keyword.operator.new, keyword.operator.expression, storage.modifier, storage.type.class | #FFFFFF | bold |
| support.function, entity.name.function, meta.function-call, meta.function, meta.method.declaration, meta.function-call support, variable.language.super.ts, variable.function, entity.name.function-call | #E0E0E0 | bold |
| entity.name.type, support.type, support.class, storage.type, entity.other.inherited-class, entity.name.class, entity.name.type.class | #FFFFFF | — |
| string, string.template, string.quoted.single, string.quoted.double, punctuation.definition.string, punctuation.definition.string.template, punctuation.definition.string.begin, punctuation.definition.string.end | #B3E6B3 | — |
| punctuation, meta.brace, punctuation.definition.parameters, punctuation.definition.block, punctuation.terminator, punctuation.separator, meta.tag.xml, meta.tag.preprocessor.xml | #BBBBBB | — |
| keyword.operator.comparison, storage.type.function.arrow, keyword.operator.assignment, keyword.operator.relational, keyword.operator.logical, keyword.operator.arithmetic, keyword.operator.math, keyword.operator.ternary | #FFFFFF | — |
| entity.name.tag, punctuation.definition.tag | #FFFFFF | bold |
| entity.other.attribute-name | #DDDDDD | italic |
| variable.other.property, variable.other.object.property, meta.object-literal.key, entity.name.tag.css, support.type.property-name | #CCCCCC | — |
| support.module.elm, entity.other.inherited-class.python, variable.other.object, support.other.namespace.php, entity.other.attribute-name.namespace.xml, record.accessor, entity.name.record.field.accessor, storage.modifier.import.java, storage.modifier.import.groovy, meta.import.swift entity.name.type.swift, meta.member.access.python | #CCCCCC | — |
| meta.section.struct.go variable.other.field.go, meta.section.struct.go variable.other.declaration.go, source, support, constant.character.entity.named, meta.jsx.children, source.lua, text.html.derivative, JSXNested | #E0E0E0 | — |
| entity.name.package.go, variable.language.this, variable.language.special.self, variable.parameter.function.language.special.self, variable.language.this.php punctuation.definition.variable.php | #FFFFFF | — |
| storage, meta.var.expr storage.type, storage.type.function, keyword.function, storage.type.class, storage.type.property, keyword.other, keyword.local.lua, storage.type.enum, storage.type.interface, storage.type.type, keyword.storage.modifier | #FFFFFF | — |
| entity.name.function.constructor | #FFFFFF | bold |
| support.constant.property-value, support.constant.font-name | #7EB6FF | — |
| keyword.other.unit | #7EB6FF | — |
| constant.other.color | #7EB6FF | — |
| markup.bold, punctuation.definition.bold | #FFFFFF | bold |
| markup.italic, punctuation.definition.italic | #FFFFFF | italic |
| markup.heading, entity.name.section, punctuation.definition.heading | #FFFFFF | bold |
| markup.underline.link, markup.underline.link.image | #7EB6FF | — |
| markup.quote, punctuation.definition.quote.begin | #B3E6B3 | italic |
| markup.inline.raw.string.markdown, punctuation.definition.raw.markdown, markup.fenced_code.block.markdown, markup.fenced_code.block.markdown punctuation, markup.raw.block.markdown | #7EB6FF | — |
| fenced_code.block.language | #FFFFFF | — |
| punctuation.definition.list.begin | #FFFFFF | — |
| markup.inserted, markup.inserted.git_gutter | #B3E6B3 | — |
| markup.deleted, markup.deleted.git_gutter | #F47777 | — |
| markup.changed, markup.changed.git_gutter | #7EB6FF | — |
| markup.table | #FFFFFF | — |
| string.regexp | #EE99EE | — |
| constant.character.escape | #7EB6FF | — |
| entity.other.attribute-name.class, entity.other.attribute-name.class punctuation.definition.entity | #7EB6FF | — |
| entity.other.attribute-name.id, entity.other.attribute-name.id punctuation.definition.entity | #FFFFFF | — |
| entity.other.attribute-name.pseudo-class, entity.other.attribute-name.pseudo-element | #BBBBBB | — |
| invalid, invalid.illegal | #F47777 | — |
| invalid.deprecated | #EE99EE | — |
| meta.diff.header.from-file, meta.diff.header.to-file | #7EB6FF | — |
| markup.inserted.diff, punctuation.definition.inserted.diff | #B3E6B3 | — |
| markup.deleted.diff, punctuation.definition.deleted.diff | #F47777 | — |
| source.json meta.structure.dictionary.json support.type.property-name.json | #FFFFFF | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #CCCCCC | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #AAAAAA | — |
| source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json | #888888 | — |
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}!`;
}