CLIO v1.0 — Scanner Inteligente com IA (MVP)

This commit is contained in:
Jarvis Deploy
2026-02-10 23:05:41 +00:00
commit 8e903d9222
41 changed files with 3190 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
colors: {
primary: '#6C63FF',
accent: '#00D4AA',
dark: {
900: '#0A0E17',
800: '#111827',
700: '#1F2937',
600: '#374151',
},
},
},
},
plugins: [],
};
export default config;