-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
86 lines (85 loc) · 2.14 KB
/
tailwind.config.ts
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import type {Config} from 'tailwindcss';
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
screens: {
'xs': '480px',
's': '738px',
'm': '1100px',
'l': '1800px',
'no-hover': {'raw': '(hover: hover) and (pointer: fine)'}
},
extend: {
colors: {
inherit: 'inherit',
current: 'currentColor',
transparent: 'transparent',
white: '#fffaee',
black: '#131312',
grey: {
50: '#E1E1E1',
100: '#9a9696',
300: '#494949',
500: '#313030',
700: '#1E1E1E',
900: '#131312'
},
orange: {
50: '#f6b796',
100: '#ED702D',
200: '#C04808'
}
},
borderRadius: {
'big': '30px',
'btn': '10px'
},
animation:{
'scroll': 'scroll 20s linear infinite',
'point': 'point 6s ease-in-out infinite',
'click': 'click 5s ease-in-out infinite',
},
boxShadow: {
'custom-ondark': "2px 5px 18px rgba(0, 0, 0, 0.40)",
'shine': "0 0 50px 40px #fff",
'btn-glow': "0 2px 20px 5px #ED702D",
},
fontSize: {
'xxs': ['.625rem', '2.1em'],
'lg2': ['1.125rem', '2.25rem'],
'lg3': ['1.125rem', '1.68rem'],
'2.25xl': ['1.5rem', '1.625rem'],
'2.5xl': ['1.5rem', '2.25rem'],
'3.5xl': ['2rem','2.25rem'],
'3.75xl': ['2rem','3rem'],
'4.5xl': ['2.5rem','3.75rem'],
'5.5xl': ['3rem', '3.5rem'],
'5.75xl': ['3.5rem', '5.25rem'],
'6.5xl': ['4rem', '6rem'],
'7.5xl': ['4.5rem', '6.75rem'],
},
fontFamily: {
'bricolage': ['Bricolage Grotesque', 'sans-serif'],
'monument': ['Monument Extended', 'sans-serif'],
},
padding: {
xs: '30px',
s: '35px',
m: '60px',
l: '62px',
'30%': '30%'
},
},
},
plugins: [
require('./tailwind-utils/plugins/layout.js'),
],
} as Config;