-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.24 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
export default {
content: [
`./components/**/*.{vue,js,ts}`,
`./layouts/**/*.vue`,
`./pages/**/*.vue`,
],
important: true,
theme: {
// maxWidth: {
// 240: '240px',
// },
container: {
center: true,
padding: '15px',
},
extend: {
fontFamily: {
NotoSansArabic: 'Noto Sans Arabic',
NotoSans: 'Noto Sans',
},
colors: {
'kk-blue': {
light: '#ddedf7',
DEFAULT: '#56a7d9',
dark: '#355686'
},
'kk-black': '#2e3436',
},
backgroundImage: {
'kk-tile-transparent': "url('/images/background/tile_transparent.svg')",
'search-icon':"url('/images/icons/search.svg')"
}
// padding: {
// '15px': '15px',
// },
// opacity: {
// 90: '0.9',
// 80: '0.8',
// 70: '0.7',
// },
// maxWidth: {
// '1/4': '25%',
// '1/2': '50%',
// },
// lineHeight: {
// golden: '1.1618',
// 18: '1.8',
// },
// width: {
// 175: '175px',
// 240: '240px',
// },
// height: {
// 'half-screen': '50vh',
// },
// inset: {
// 12: '3rem',
// },
},
},
}