-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
68 lines (64 loc) · 1.46 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
import 'dotenv/config';
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'waves': "url('/waves.webp')",
'bamboo': "url('/img/bamboo.jpeg')",
'bamboo-zoomed-out': "url('/img/bamboo-zoomed-out.jpeg')",
},
},
colors: {
primary: {
100: '#7FD1C7',
200: '#61b3aa',
300: '#147169',
400: '#1d4446',
},
accent: {
100: '#F2C94C',
200: '#886b00',
},
text: {
},
tttt: {
100: '#EAF4F4',
200: '#e0eaea',
300: '#b8c1c1',
},
gray: {
700: '#334155'
},
red: {
warn: '#C42847'
}
},
fontFamily: {
sans: ['Dosis', 'sans-serif']
},
extend: {
dropShadow: {
header: '0 1.2px 1.2px rgba(51,65,85,1)',
'sub-header': '0 1.2px 1.2px rgba(51,65,85,0.8))'
}
},
screens: {
'xxs': '400px',
'xs': '475px',
...defaultTheme.screens,
},
},
plugins: [
require('tailwind-scrollbar'),
],
}