-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.16 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
/** @type {import("@types/tailwindcss/tailwind-config").TailwindConfig } */
module.exports = {
mode: 'jit',
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
fontFamily: {
sans: [
"IBM Plex Sans",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Helvetica",
"Arial",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol"
],
},
extend: {
colors: {
surface: {
'0': '#f6f6f6',
'1': '#eeeeee',
'2': '#777777',
'3': '#363636',
'4': '#181819',
},
font: {
'primary': '#111827',
'secondary1': '#595959',
'secondary2': '#6b7280',
'secondary3': '#d9dce1',
},
info: '#4f46e5',
},
fontSize: {
'4.5xl': ['2.5rem', '2.75rem'],
},
height: {
'25': '6.25rem',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/aspect-ratio'),
],
}