anycoder-9006d49c / tailwind.config.js
M-Zeki's picture
Upload tailwind.config.js with huggingface_hub
5a22f19 verified
Raw
History Blame Contribute Delete
588 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-gray': '#4A5568',
'ice-white': '#F7FAFC',
'aurora-cyan': '#00E5FF',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['Roboto Mono', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
},
},
plugins: [],
}