-
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.63 KB
/
tailwind.config.js
File metadata and controls
76 lines (76 loc) · 1.63 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 {
darkMode: 'class',
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
fontFamily: {
sans: [
'IBM Plex Sans',
'ui-sans-serif',
'system-ui',
'-apple-system',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Color Emoji',
],
},
colors: {
brand: {
50: '#f7faf0',
100: '#eef5df',
200: '#ddeebf',
300: '#c9e59b',
400: '#b4d455',
500: '#9cbf3b',
600: '#7f9f2f',
700: '#637f25',
800: '#4d631d',
900: '#3c4d17',
950: '#1f280c',
},
},
boxShadow: {
subtle: '0 1px 2px rgba(0,0,0,0.06), 0 1px 1px rgba(0,0,0,0.04)',
},
transitionProperty: {
height: 'height',
'max-height': 'max-height',
},
},
fontSize: {
xl: [
'2.25rem',
{
lineHeight: '1.75rem',
letterSpacing: '-0.01em',
fontWeight: '500',
},
],
'2xl': [
'3.5rem',
{
lineHeight: '2rem',
letterSpacing: '-0.01em',
fontWeight: '500',
},
],
'3xl': [
'4.875rem',
{
lineHeight: '2.25rem',
letterSpacing: '-0.02em',
fontWeight: '700',
},
],
},
},
plugins: [require('@tailwindcss/forms')],
}