🧹 chore(clean): whole repository

This commit is contained in:
eshanized
2024-12-25 04:57:02 +05:30
parent 9333bebc52
commit 2340d0f691
88 changed files with 0 additions and 10238 deletions

View File

@@ -1,30 +0,0 @@
/** @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: [],
};