Initial commit
This commit is contained in:
54
tailwind.config.js
Normal file
54
tailwind.config.js
Normal file
@@ -0,0 +1,54 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
"./src/**/*.{js,jsx,ts,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['Inter', 'system-ui', 'sans-serif'],
|
||||
},
|
||||
colors: {
|
||||
primary: {
|
||||
50: 'rgb(239 246 255)',
|
||||
100: 'rgb(219 234 254)',
|
||||
200: 'rgb(191 219 254)',
|
||||
300: 'rgb(147 197 253)',
|
||||
400: 'rgb(96 165 250)',
|
||||
500: 'rgb(59 130 246)',
|
||||
600: 'rgb(37 99 235)',
|
||||
700: 'rgb(29 78 216)',
|
||||
800: 'rgb(30 64 175)',
|
||||
900: 'rgb(30 58 138)',
|
||||
},
|
||||
gray: {
|
||||
50: 'rgb(248 250 252)',
|
||||
100: 'rgb(241 245 249)',
|
||||
200: 'rgb(226 232 240)',
|
||||
300: 'rgb(203 213 225)',
|
||||
400: 'rgb(148 163 184)',
|
||||
500: 'rgb(100 116 139)',
|
||||
600: 'rgb(71 85 105)',
|
||||
700: 'rgb(51 65 85)',
|
||||
800: 'rgb(30 41 59)',
|
||||
900: 'rgb(15 23 42)',
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
'fade-in': 'fadeIn 0.5s ease-in-out',
|
||||
'slide-up': 'slideUp 0.5s ease-out',
|
||||
},
|
||||
keyframes: {
|
||||
fadeIn: {
|
||||
'0%': { opacity: '0' },
|
||||
'100%': { opacity: '1' },
|
||||
},
|
||||
slideUp: {
|
||||
'0%': { transform: 'translateY(20px)', opacity: '0' },
|
||||
'100%': { transform: 'translateY(0)', opacity: '1' },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user