-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
95 lines (94 loc) · 3.19 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
import formsPlugin from '@tailwindcss/forms';
import typographyPlugin from '@tailwindcss/typography';
export default {
content: ['./app/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: 'rgb(var(--color-primary) / <alpha-value>)',
contrast: 'rgb(var(--color-contrast) / <alpha-value>)',
accent: 'var(--color-accent)',
accentDark: 'rgba(var(--color-accentDark) / <alpha-value>)',
black: 'rgba(var(--color-black) / <alpha-value>)',
darkGray: 'rgba(var(--color-darkGray) / <alpha-value>)',
gray: 'rgba(var(--color-gray) / <alpha-value>)',
lightGray: 'rgba(var(--color-lightGray) / <alpha-value>)',
lighterGray: 'rgba(var(--color-lighterGray) / <alpha-value>)',
offWhite: 'rgba(var(--color-offWhite) / <alpha-value>)',
white: 'rgba(var(--color-white) / <alpha-value>)',
},
borderRadius: {
card: 'var(--card-radius)',
button: 'var(--button-radius)',
},
lineHeight: {
none: '1',
tight: '1.2',
snug: '1.3',
normal: '1.4',
relaxed: '1.6',
loose: '1.8',
},
screens: {
sm: '32em',
md: '48em',
lg: '64em',
xl: '80em',
'2xl': '96em',
'sm-max': {max: '48em'},
'sm-only': {min: '32em', max: '48em'},
'md-only': {min: '48em', max: '64em'},
'lg-only': {min: '64em', max: '80em'},
'xl-only': {min: '80em', max: '96em'},
'2xl-only': {min: '96em'},
},
spacing: {
nav: 'var(--height-nav)',
screen: 'var(--screen-height, 100vh)',
},
height: {
screen: 'var(--screen-height, 100vh)',
'screen-no-nav':
'calc(var(--screen-height, 100vh) - var(--height-nav))',
'screen-dynamic': 'var(--screen-height-dynamic, 100vh)',
},
minHeight: {
inherit: 'inherit',
},
fontFamily: {
display: 'Synchro',
sans: ['Helvetica Neue', 'ui-sans-serif', 'system-ui', 'sans-serif'],
serif: ['"IBMPlexSerif"', 'Palatino', 'ui-serif'],
},
fontSize: {
xs: '0.75rem',
sm: '0.875rem',
base: '1rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '3.75rem',
display: ['var(--font-size-display)', '1.1'],
heading: ['var(--font-size-heading)', '1.25'],
lead: ['var(--font-size-lead)', '1.333'],
copy: ['var(--font-size-copy)', '1.5'],
fine: ['var(--font-size-fine)', '1.333'],
},
maxWidth: {
'prose-narrow': '45ch',
'prose-wide': '80ch',
},
boxShadow: {
border: 'inset 0px 0px 0px 1px rgb(var(--color-primary) / 0.08)',
darkHeader: 'inset 0px -1px 0px 0px rgba(21, 21, 21, 0.4)',
lightHeader: 'inset 0px -1px 0px 0px rgba(21, 21, 21, 0.05)',
card: '0px 4px 72.8px 0px rgba(0, 0, 0, 0.20)',
badge:
'0px 1px 2px rgba(0, 0, 0, 0.05), 0px 2px 4px rgba(0, 0, 0, 0.05), 0px 4px 8px rgba(0, 0, 0, 0.05), 0px 8px 12px rgba(0, 0, 0, 0.05), 0px 12px 16px rgba(0, 0, 0, 0.05)',
},
},
},
plugins: [formsPlugin, typographyPlugin],
};