Files
MyReactNativeAndroid/apps/web/tailwind.config.js
chiDT 463c6ebd87 Initial React Native Android project setup with multiplatform desktop support.
Added React Native project structure with Android configuration, Tauri desktop app support, and build artifacts. Includes development tools, test configuration, and platform-specific resources.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-14 23:24:05 +09:00

30 lines
752 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"../../packages/shared/src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backdropBlur: {
xs: '2px',
},
animation: {
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
glow: {
'0%': { boxShadow: '0 0 20px rgba(59, 130, 246, 0.5)' },
'100%': { boxShadow: '0 0 40px rgba(59, 130, 246, 0.8)' },
}
}
},
},
plugins: [],
}