-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
45 lines (45 loc) · 1000 Bytes
/
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
/* eslint-disable */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}'
],
theme: {
extend: {
colors: {
primary: {
100: '#CEE4B6',
200: '#ADC295',
300: '#8DA276',
400: '#6E8258',
500: '#50643c',
600: '#465835',
700: '#3C4B2D',
800: '#323F25',
900: '#28321E',
},
secondary: {
100: '#F3DCD3',
200: '#D5BFB6',
300: '#B8A29A',
400: '#9C877E',
500: '#806C64',
600: '#705F58',
700: '#60514B',
800: '#50443F',
900: '#403632',
}
},
fontFamily: {
sans: ['Inter' ,'sans-serif'],
script: ['Kaushan Script' ,'sans-serif'],
body: ['DM Sans' ,'sans-serif'],
},
backgroundImage: {
'history': "url('/src/assets/images/background.png')",
}
},
},
plugins: [
]
}