Files
odo/tailwind.config.js
T
taodengandClaude Opus 4.6 cdcf28ff4e feat: Phase 1 scaffold — React + Vite + TypeScript + Dashboard (v0.10.0)
- Add Vite + React + TypeScript + Tailwind CSS to Electron app
- Create Dashboard page with gateway control (start/stop/restart/status)
- Expand preload.js IPC bridge with gateway and OCM API channels
- Add IPC handlers in main.js for openclaw CLI and OCM proxy
- Dev mode loads Vite dev server, production loads built dist/
- Bump version to 0.10.0

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-20 07:30:27 +10:00

21 lines
425 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
odo: {
bg: '#0f1117',
surface: '#1a1d27',
border: '#2a2d3a',
accent: '#6366f1',
'accent-hover': '#818cf8',
text: '#e2e8f0',
'text-dim': '#94a3b8',
},
},
},
},
plugins: [],
};