first commit
This commit is contained in:
commit
44995cb5db
60 changed files with 5472 additions and 0 deletions
41
tailwind.config.js
Normal file
41
tailwind.config.js
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: {
|
||||
50: '#eff3fe',
|
||||
100: '#d7dffc',
|
||||
200: '#b0bff9',
|
||||
500: '#6b8df5',
|
||||
600: '#4B70F7',
|
||||
700: '#3a5cd4',
|
||||
},
|
||||
dark: {
|
||||
700: '#1f2937',
|
||||
800: '#1a1a2e',
|
||||
900: '#111827',
|
||||
},
|
||||
badge: {
|
||||
bg: '#F3F4F6',
|
||||
text: '#6B7280',
|
||||
},
|
||||
section: {
|
||||
bg: '#F8FAFC',
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
figtree: ['Figtree', 'sans-serif'],
|
||||
},
|
||||
boxShadow: {
|
||||
card: '0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05)',
|
||||
'card-hover': '0 4px 16px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08)',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue