cfdf515228
- .claude/CLAUDE.md - .claude/commands/subagentes.md - .claude/rules/INDEX.md - .mcp.json - bash/functions/cybersecurity/analyze_dns.md - bash/functions/cybersecurity/audit_http_headers.md - bash/functions/cybersecurity/audit_ssh_config.md - bash/functions/cybersecurity/check_firewall.md - bash/functions/cybersecurity/detect_suspicious_users.md - bash/functions/cybersecurity/encrypt_file.md - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
35 lines
753 B
Markdown
35 lines
753 B
Markdown
---
|
|
name: default_theme
|
|
kind: function
|
|
lang: go
|
|
domain: tui
|
|
version: "1.0.0"
|
|
purity: pure
|
|
signature: "func DefaultTheme() Theme"
|
|
description: "Construye el tema de colores por defecto para componentes TUI. Paleta clara optimizada para terminales con fondo blanco."
|
|
tags: [tui, theme, colors, constructor, pendiente-usar]
|
|
uses_functions: []
|
|
uses_types: []
|
|
returns: [theme_go_tui]
|
|
returns_optional: false
|
|
error_type: ""
|
|
imports: []
|
|
params: []
|
|
output: "Theme: paleta de colores clara/por defecto"
|
|
tested: false
|
|
tests: []
|
|
test_file_path: ""
|
|
file_path: "functions/tui/default_theme.go"
|
|
---
|
|
|
|
## Ejemplo
|
|
|
|
```go
|
|
theme := DefaultTheme()
|
|
styles := NewStyles(theme)
|
|
```
|
|
|
|
## Notas
|
|
|
|
Tema base del sistema de estilos. Usar DarkTheme para terminales con fondo oscuro.
|