Main functions
This commit is contained in:
83
.history/tailwind.config_20251025213049.js
Normal file
83
.history/tailwind.config_20251025213049.js
Normal file
@@ -0,0 +1,83 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
"./views/**/*.ejs",
|
||||
"./public/**/*.js",
|
||||
"./public/**/*.html"
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: {
|
||||
50: '#eff6ff',
|
||||
100: '#dbeafe',
|
||||
200: '#bfdbfe',
|
||||
300: '#93c5fd',
|
||||
400: '#60a5fa',
|
||||
500: '#3b82f6',
|
||||
600: '#2563eb',
|
||||
700: '#1d4ed8',
|
||||
800: '#1e40af',
|
||||
900: '#1e3a8a'
|
||||
},
|
||||
secondary: {
|
||||
50: '#f8fafc',
|
||||
100: '#f1f5f9',
|
||||
200: '#e2e8f0',
|
||||
300: '#cbd5e1',
|
||||
400: '#94a3b8',
|
||||
500: '#64748b',
|
||||
600: '#475569',
|
||||
700: '#334155',
|
||||
800: '#1e293b',
|
||||
900: '#0f172a'
|
||||
}
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ['Ubuntu', 'system-ui', 'sans-serif'],
|
||||
display: ['Ubuntu', 'system-ui', 'sans-serif']
|
||||
},
|
||||
fontSize: {
|
||||
'xs': ['0.625rem', { lineHeight: '0.875rem' }],
|
||||
'sm': ['0.75rem', { lineHeight: '1rem' }],
|
||||
'base': ['0.825rem', { lineHeight: '1.125rem' }],
|
||||
'lg': ['0.9rem', { lineHeight: '1.25rem' }],
|
||||
'xl': ['1rem', { lineHeight: '1.375rem' }],
|
||||
'2xl': ['1.125rem', { lineHeight: '1.5rem' }],
|
||||
'3xl': ['1.375rem', { lineHeight: '1.75rem' }],
|
||||
'4xl': ['1.625rem', { lineHeight: '2rem' }],
|
||||
'5xl': ['2rem', { lineHeight: '2.5rem' }],
|
||||
'6xl': ['2.5rem', { lineHeight: '3rem' }],
|
||||
'7xl': ['3rem', { lineHeight: '3.5rem' }],
|
||||
'8xl': ['4rem', { lineHeight: '4.5rem' }],
|
||||
'9xl': ['5rem', { lineHeight: '5.5rem' }]
|
||||
},
|
||||
spacing: {
|
||||
'72': '18rem',
|
||||
'84': '21rem',
|
||||
'96': '24rem'
|
||||
},
|
||||
animation: {
|
||||
'fade-in': 'fadeIn 0.5s ease-in-out',
|
||||
'slide-in': 'slideIn 0.3s ease-out',
|
||||
'bounce-in': 'bounceIn 0.6s ease-out'
|
||||
},
|
||||
keyframes: {
|
||||
fadeIn: {
|
||||
'0%': { opacity: '0' },
|
||||
'100%': { opacity: '1' }
|
||||
},
|
||||
slideIn: {
|
||||
'0%': { transform: 'translateY(-10px)', opacity: '0' },
|
||||
'100%': { transform: 'translateY(0)', opacity: '1' }
|
||||
},
|
||||
bounceIn: {
|
||||
'0%': { transform: 'scale(0.3)', opacity: '0' },
|
||||
'50%': { transform: 'scale(1.05)', opacity: '0.8' },
|
||||
'100%': { transform: 'scale(1)', opacity: '1' }
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: []
|
||||
}
|
||||
Reference in New Issue
Block a user