-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
102 lines (102 loc) · 1.91 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/** @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: {
extend: {
fontSize: {
'heading-h1': [
'50px',
{
lineHeight: '120%',
},
],
'heading-h2': [
'38px',
{
lineHeight: '120%',
letterSpacing: '-0.76px',
},
],
'heading-h3': [
'32px',
{
lineHeight: '120%',
},
],
'heading-h4': [
'24px',
{
lineHeight: '120%',
},
],
'heading-h6': [
'18px',
{
lineHeight: '120%',
},
],
'body-small': [
'16px',
{
lineHeight: '150%',
},
],
'body-regular': [
'18.5px',
{
lineHeight: '160%',
},
],
'body-large': [
'20px',
{
lineHeight: '150%',
},
],
'body-xlarge': [
'22px',
{
lineHeight: '150%',
},
],
},
colors: {
white: '#fff',
primary: {
100: '',
400: '',
500: '#CC3737',
700: '#CE1B1B',
900: '#990808',
},
secondary: {
100: '#7D7D7D',
300: '#403F3F',
500: '',
600: '',
900: '#090303',
},
error: {
100: '',
300: '',
500: '',
600: '',
900: '#7F1D1D',
},
},
fontFamily: {
display: ['Montserrat'],
body: ['IBM Plex Sans'],
sans: ['IBM Plex Sans'],
},
},
},
plugins: [],
};