website-builder-backend / frontend /tailwind.config.js
David Prince
fix: add all missing local module stubs (remote_mcp_registry, mcp_auth, mcp_transport, etc)
cce8120
Raw
History Blame Contribute Delete
922 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,jsx}",
"./components/**/*.{js,jsx}",
],
theme: {
extend: {
colors: {
sky: {
950: '#0a1628',
900: '#0f2138',
800: '#16324a',
700: '#1e4560',
600: '#2563a8',
500: '#3b82d4',
400: '#60a5f0',
300: '#93c5fd',
200: '#bfdbfe',
100: '#dbeafe',
},
},
animation: {
'blink': 'blink 1s step-end infinite',
'fade-in': 'fadeIn 0.4s ease-out forwards',
},
keyframes: {
blink: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0' },
},
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(4px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
},
},
plugins: [],
}