anycoder-2e0e36d2 / tailwind.config.js
M-Zeki's picture
Upload tailwind.config.js with huggingface_hub
7e31ac4 verified
Raw
History Blame Contribute Delete
849 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
nordic: {
navy: '#0A1128',
stone: '#4A5568',
ice: '#F7FAFC',
cyan: '#00E5FF',
glass: 'rgba(247, 250, 252, 0.05)',
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['Roboto Mono', 'monospace'],
},
animation: {
'float': 'float 6s ease-in-out infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
}
}
},
},
plugins: [],
}