-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
144 lines (144 loc) · 4 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
backgroundImage: {
'custom-gradient': 'linear-gradient(75deg, rgba(74,124,89,1) 45%, rgba(217,191,119,0.7) 78%, rgba(185,163,101,0.3927696078431373) 90%), url("/src/assets/images/hero.jpg")',
'green-gradient': 'linear-gradient(30deg, rgba(74,124,89,1) 15%, rgba(185,163,101,0.3927696078431373) 90%)',
'green-yellow-gradient': 'linear-gradient(30deg, rgba(74,124,89,1) 15%, rgba(185,163,101,1) 90%, rgba(217, 191, 119, 1))',
'green-yellow-gradient-2': 'linear-gradient(0deg, rgba(74,124,89,1) 15%, rgba(185,163,101,1) 90%, rgba(217, 191, 119, 1))',
},
backgroundSize: {
'full': '100% 100%',
},
backgroundRepeat: {
'no-repeat': 'no-repeat',
},
colors: {
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: '#4A7C59',
secondary: '#D9BF77',
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
green: {
0: '#000000',
10: '#131F16',
20: '#253E2C',
30: '#34573E',
40: '#3F6A4C',
50: '#4A7C59',
60: '#659072',
70: '#80A38A',
80: '#A5BEAC',
90: '#D2DED5',
95: '#E4EBE6',
99: '#F6F8F7',
100: '#FFFFFF',
},
yellow: {
0: '#000000',
10: '#36301E',
20: '#6C5F3B',
30: '#988654',
40: '#B9A365',
50: '#D9BF77',
60: '#DFC98B',
70: '#E4D2A0',
80: '#ECDFBB',
90: '#F5EFDD',
95: '#F9F5EB',
99: '#FDFCF8',
100: '#FFFFFF',
},
neutral: {
0: '#000000',
10: '#3C3B3C',
20: '#787677',
30: '#A8A6A7',
40: '#CCCACB',
50: '#F0EDEE',
80: '#F8F6F7',
100: '#FFFFFF',
},
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
width: {
'128': '32rem',
},
height: {
'128': '32rem',
'150': '39rem',
'1/12': '8.333333%',
'2/12': '16.666667%',
'3/12': '25%',
'4/12': '33.333333%',
'5/12': '41.666667%',
'6/12': '50%',
'7/12': '58.333333%',
'8/12': '66.666667%',
'9/12': '75%',
'10/12': '83.333333%',
'11/12': '91.666667%',
},
fontFamily: {
figtree: ['Figtree'],
},
},
},
plugins: [require("tailwindcss-animate")],
}