-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
70 lines (70 loc) · 1.75 KB
/
Copy pathtailwind.config.js
File metadata and controls
70 lines (70 loc) · 1.75 KB
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
module.exports = {
content: [
'./content/**/*.erb',
'./content/**/*.md',
'./content/**/*.html',
'./content/assets/**/*.js',
'./layouts/**/*.html.erb',
'./layouts/**/*.html',
],
theme: {
extend: {
boxShadow: {
'button': '.25rem .25rem 0 0 #D4A373',
'card': '0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06)',
'card-hover': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)'
},
colors: {
'green': {
'light': '#E6F6F2',
'DEFAULT': '#0E8A6E',
},
'primary': {
'light': '#F8F1E9',
'DEFAULT': '#D4A373',
'dark': '#B88A5E',
},
'secondary': {
'light': '#FDF8F3',
'DEFAULT': '#FAEDCD',
'dark': '#F5DEB3',
},
'accent': {
'light': '#F9F5EB',
'DEFAULT': '#E9D8A6',
'dark': '#C9B984',
},
'danger': {
'light': '#FBEAE5',
'DEFAULT': '#CF3919',
'dark': '#A42D14',
},
'neutral': {
'light': '#F9F8F6',
'DEFAULT': '#E5E2DC',
'dark': '#2D2A24',
},
'gray': {
'100': '#F5EBE0',
'200': '#E3D5CA',
'300': '#D5BDAF',
'400': '#B08968',
'500': '#9C6644',
'600': '#7F5539',
'700': '#6B4F31',
'800': '#583E29',
'900': '#3C2A1E',
}
},
backgroundImage: {
'gradient-primary': 'linear-gradient(135deg, #D4A373 0%, #C68B59 100%)',
'gradient-secondary': 'linear-gradient(135deg, #E3D5CA 0%, #D5BDAF 100%)',
},
borderRadius: {
'xl': '1rem',
'2xl': '1.5rem',
},
},
},
plugins: [],
}