forked from 6floorpeople/pierong-front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 902 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
dropShadow: {
bottom: '5px 8px 6px rgba(0, 0, 0, 0.8)',
feve: '0.5px 4px 4px rgba(0,0,0,0.5)'
},
boxShadow: {
btnShadow: '2px 2px 0px 0px #57765E'
},
transitionProperty: {
width: 'max-width'
},
backgroundImage: {
main: 'url("https://wallpaperaccess.com/full/57166.jpg")'
},
screens: {
default: '480px'
},
colors: {
mainTeal: '#57765E',
mainBeige: '#eae6da',
grayBg: '#D9D9D9',
graytext: '#767676'
},
fontFamily: {
main: ['cookie', 'kreon', 'kyobo', 'sans-serif']
},
height: {
screen: 'calc(var(--vh, 1vh) * 100)',
half: 'calc(var(--vh, 1vh) * 70)'
},
maxHeight: {
screen: 'calc(var(--vh, 1vh) * 100)',
half: 'calc(var(--vh, 1vh) * 70)'
}
}
},
plugins: []
}