forked from simseonbeom/project-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (57 loc) · 1.9 KB
/
tailwind.config.js
File metadata and controls
57 lines (57 loc) · 1.9 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./client/**/*.html'],
theme: {
extend: {
colors: {
white: '#ffffff',
primary: '#609966',
secondary: '#38593C',
profileBg: '#243826',
info: '#F03F40',
contentSecondary: '#6B6B6B',
contentTeriary: '#A6A6A6',
gray1: '#E1E1E1',
gray7: '#404040',
light3: '#74C37E',
notSelect: '#A1CAA5',
thumnail: '#C4C4C4',
thumnailBg: '#E8E8E8',
grayBg: '#F9F9F9',
},
boxShadow: {
bottom: '0px 1px 5px 0px rgba(0, 0, 0, 0.25)',
thumnail: '1px 4px 4px 0px rgba(0, 0, 0, 0.4);',
},
dropShadow: {
sm: '0 0.8px 0.6px rgba(0, 0, 0, 0.14)',
},
backgroundImage: {
cakeImage: 'url(/assets/images/cake.png)',
burgerFalse: 'url(/assets/icons/burgeractive=false.png)',
burgerTrue: 'url(/assets/icons/burgeractive=true.png)',
photoTrue: 'url(/assets/icons/photoactive=true.png)',
photoFalse: 'url(/assets/icons/photoactive=false.png)',
coverPhoto: 'url(/assets/icons/photo.png)',
check: 'url(/assets/icons/check.png)',
plus: 'url(/assets/icons/plus.png)',
arrowBlack: 'url(/assets/icons/arrowrightblack.png)',
pencil: 'url(/assets/icons/pencil.png)',
heart: 'url(/assets/icons/heart.png)',
subway: 'url(/assets/icons/subway.png)',
subwaywhite: 'url(/assets/icons/subwaywhite.png)',
reviewplus: 'url(/assets/icons/reviewplus.png)',
coffee: 'url(/assets/images/imagefieldfeed.png)',
sakura: 'url(/assets/images/reviewpost.png)',
receipt: 'url(/assets/icons/receipt.png)',
mapHeartTrue: 'url(/assets/icons/mapheart==true.png)',
mapHeartFalse: 'url(/assets/icons/mapheart==false.png)',
mapBefore: 'url(/assets/icons/mapbefore.png)',
heartFalse: 'url(/assets/icons/heartactive=false.png)',
heartTrue: 'url(/assets/icons/heartactive=true.png)',
spreadMap: 'url(/assets/icons/spread.png)',
},
},
},
plugins: [],
};