mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-07 11:35:53 +00:00
- Implement TypeScript/Express server with tty-fwd integration - Add real-time terminal streaming via Server-Sent Events using tail -f - Create asciinema player integration with dynamic resize support - Implement global keyboard capture for full terminal interaction - Add session management (create, list, kill) with proper cleanup - Support instant playback of existing content + real-time new content - Include directory browser for working directory selection - Add hot reload development workflow with concurrent build processes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
No EOL
816 B
JavaScript
31 lines
No EOL
816 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{html,js,ts}",
|
|
"./public/**/*.html"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
'mono': ['Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', 'monospace'],
|
|
},
|
|
colors: {
|
|
'terminal': {
|
|
'bg': '#1a1a1a',
|
|
'fg': '#f0f0f0',
|
|
'green': '#00ff00',
|
|
'blue': '#0080ff',
|
|
'yellow': '#ffff00',
|
|
'red': '#ff0000',
|
|
'cyan': '#00ffff',
|
|
'magenta': '#ff00ff',
|
|
}
|
|
}
|
|
},
|
|
fontFamily: {
|
|
'sans': ['Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', 'monospace'],
|
|
'mono': ['Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', 'monospace'],
|
|
}
|
|
},
|
|
plugins: [],
|
|
} |