-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
94 lines (94 loc) · 2.41 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
`components/**/*.{vue,js}`,
`layouts/**/*.vue`,
`pages/**/*.vue`,
`composables/**/*.{js,ts}`,
`plugins/**/*.{js,ts}`,
`App.{js,ts,vue}`,
`app.{js,ts,vue}`
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
'text': ['Open Sans', 'sans-serif'],
'highlight': ['Inter', 'sans-serif']
},
colors: {
'brand_primary_light': '#124BCF',
'brand_secondary_light': '#5eceeb',
'brand_secondary_light_saturated': '#5eceeb',
'typography_primary_light': '#000000',
'background_light': '#ffffff',
'brand_primary_dark': '#DF9A2C',
'brand_secondary_dark': '#6e3129',
'brand_secondary_dark_saturated': '#cc5a4b',
'typography_primary_dark': '#eeeeee',
'background_dark': '#151515',
'light': '#F7F7F7'
},
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',
},
boxShadow: {
// One example using shadow-lg -> shadow-lg-invert
'dark_shadow': '0 10px 15px -3px rgba(255, 255, 255, 0.1), 0 4px 6px -2px rgba(255, 255, 255, 0.05)',
},
spacing: {
'nav': '4rem',
'section_x': '5rem',
},
maxWidth: {
'8xl': '88rem',
'9xl': '96rem'
},
transitionProperty: {
'max-height': 'max-height'
}
},
},
plugins: [],
}