imeshuek commited on
Commit
24fd142
·
verified ·
1 Parent(s): d32c530

Upload tailwind.config.ts

Browse files
Files changed (1) hide show
  1. tailwind.config.ts +72 -0
tailwind.config.ts ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import type { Config } from 'tailwindcss'
2
+
3
+ const config: Config = {
4
+ content: [
5
+ './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
6
+ './src/components/**/*.{js,ts,jsx,tsx,mdx}',
7
+ './src/app/**/*.{js,ts,jsx,tsx,mdx}',
8
+ ],
9
+ theme: {
10
+ extend: {
11
+ colors: {
12
+ ivory: {
13
+ 50: '#FEFDFB',
14
+ 100: '#FDF8F0',
15
+ 200: '#F9F0E1',
16
+ 300: '#F2E4CC',
17
+ },
18
+ gold: {
19
+ 50: '#FDF8ED',
20
+ 100: '#F9EDCC',
21
+ 200: '#F0D89C',
22
+ 300: '#D4B06A',
23
+ 400: '#C4A265',
24
+ 500: '#A8873E',
25
+ 600: '#8C6D2F',
26
+ },
27
+ sage: {
28
+ 50: '#F4F7F4',
29
+ 100: '#E5ECE5',
30
+ 200: '#C9D9C9',
31
+ 300: '#A3BFA3',
32
+ 400: '#7DA37D',
33
+ 500: '#5C8A5C',
34
+ 600: '#4A6E4A',
35
+ },
36
+ rose: {
37
+ 50: '#FDF2F4',
38
+ 100: '#F9E0E5',
39
+ 200: '#F3C1CB',
40
+ 300: '#E89AAD',
41
+ 400: '#D4738F',
42
+ 500: '#B85A75',
43
+ 600: '#96475E',
44
+ },
45
+ charcoal: {
46
+ 50: '#F7F7F7',
47
+ 100: '#E8E8E8',
48
+ 200: '#D1D1D1',
49
+ 300: '#A3A3A3',
50
+ 400: '#6B6B6B',
51
+ 500: '#4A4A4A',
52
+ 600: '#2D2D2D',
53
+ 700: '#1F1F1F',
54
+ },
55
+ },
56
+ fontFamily: {
57
+ heading: ['Playfair Display', 'Georgia', 'serif'],
58
+ body: ['Inter', 'sans-serif'],
59
+ },
60
+ boxShadow: {
61
+ 'gold': '0 4px 16px -2px rgba(196,162,101,0.25)',
62
+ 'rose': '0 4px 16px -2px rgba(184,90,117,0.2)',
63
+ 'soft': '0 2px 8px -2px rgba(0,0,0,0.06)',
64
+ },
65
+ backgroundImage: {
66
+ 'hero-gradient': 'linear-gradient(135deg, #FDF8F0 0%, #F9E0E5 50%, #E5ECE5 100%)',
67
+ },
68
+ },
69
+ },
70
+ plugins: [],
71
+ }
72
+ export default config