-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
76 lines (76 loc) · 1.74 KB
/
tailwind.config.js
File metadata and controls
76 lines (76 loc) · 1.74 KB
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
/** @type {import('tailwindcss').Config} */
export default {
separator: '--',
content: [
'app/**/*.{vue,js,ts}'
],
theme: {
extend: {
fontFamily: {
'sans': ['Graphik', 'sans-serif'],
'serif': ['Tiempos Headline', 'serif']
},
colors: {
'brand_primary': '#124BCF',
'brand_secondary': '#5eceeb',
'brand_secondary_saturated': '#5eceeb',
'typography_primary': '#000000',
'background': '#ffffff'
},
fontSize: {
'xxs': '0.5rem',
'xs': '0.75rem',
'sm': '0.875rem',
'base': '1rem',
'lg': '1.125rem',
'highlight': '5rem',
'h1': '4rem',
'h2': '3rem',
'h3': '2rem',
'h4': '1.5rem',
'h5': '1.25rem',
'highlight_sm': '3.5rem',
'h1_sm': '3rem',
'h2_sm': '2.25rem',
'h3_sm': '1.75rem',
'h4_sm': '1.5rem',
'h5_sm': '1.25rem'
},
lineHeight: {
'xxs': '0.75rem',
'xs': '1rem',
'sm': '1.25rem',
'base': '1.35rem',
'lg': '1.45rem',
'highlight': '5.5rem',
'h1': '4.25rem',
'h2': '3.25rem',
'h3': '2.25rem',
'h4': '1.75rem',
'h5': '1.5rem',
'highlight_sm': '3.75rem',
'h1_sm': '3.25rem',
'h2_sm': '2.5rem',
'h3_sm': '2rem',
'h4_sm': '1.75rem',
'h5_sm': '1.5rem',
},
padding: {
'section_x_sm': '1.5rem',
'section_x': '5rem',
'section_y_sm': '3rem',
'section_y': '5rem'
},
spacing: {
'nav': '4rem',
'section_x': '5rem',
},
width: {
'1of2': '50%',
'1of4': '25%',
'3of4': '75%'
},
},
},
plugins: [],
}