Files
Snigdha-OS.github.io/tailwind.config.js
2024-12-25 05:00:53 +05:30

30 lines
714 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'cornflower-blue': '#6495ED',
},
animation: {
'gradient': 'gradient 8s linear infinite',
},
keyframes: {
gradient: {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center',
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center',
},
},
},
fontFamily: {
'fira-sans': ['"Fira Sans"', 'sans-serif'],
},
},
},
plugins: [],
};