-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (45 loc) · 916 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
46
47
48
49
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue',
],
theme: {
colors: {
gray: {
50: '#D5D3D8',
100: '#B9B6BD',
200: '#908A8F',
300: '#817E8C',
400: '#38363E',
500: '#24222C',
600: '#1B1923',
},
white: '#FFFFFF',
yellow: '#F8BA1A',
transparent: 'transparent',
},
boxShadow: {
card: '-2px 2px 0px rgba(0, 0, 0, 0.1)',
},
extend: {
height: {
cover: '75px',
},
width: {
cover: '50px',
},
maxWidth: {
'content-container': '820px',
},
gridTemplateColumns: {
main: 'calc(68% - 20px) calc(32% - 20px)',
},
},
},
plugins: [],
}