-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
43 lines (41 loc) · 934 Bytes
/
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
/** @type {import('tailwindcss').Config} */
import defaultTheme from 'tailwindcss/defaultTheme';
export default {
darkMode: 'class',
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
'am-pink': '#de273c',
'am-pink-light': '#ff4d62',
'helper-primary': '#EA6042',
'helper-secondary': '#FF9979',
'helper-transparent': '#EA604229',
'helper-dark': '#511C10',
},
fontFamily: {
display: ['Hubot Sans', ...defaultTheme.fontFamily.sans],
},
typography: theme => ({
DEFAULT: {
css: {
color: theme('colors.gray.600'),
h: {
color: theme('colors.gray.800'),
},
strong: {
color: theme('colors.gray.700'),
},
a: {
'color': theme('colors.green.500'),
'&:hover': {
color: theme('colors.green.600'),
},
},
},
},
}),
},
},
plugins: [require('@tailwindcss/typography')],
};