-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
48 lines (47 loc) · 1.09 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
const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Satoshi', ...defaultTheme.fontFamily.sans],
},
spacing: {
18: '4.5rem',
112: '28rem',
120: '30rem',
},
colors: {
'brand-yellow': {
'50': '#fffdf7',
'100': '#fffcee',
'200': '#fff7d6',
'300': '#fff2bd',
'400': '#ffe88b',
'500': '#ffde59',
'600': '#e6c850',
'700': '#bfa743',
'800': '#998535',
'900': '#7d6d2c'
},
'brand-red': {
'50': '#faf4f4',
'100': '#f6e9e9',
'200': '#e8c7c7',
'300': '#daa5a5',
'400': '#be6262',
'500': '#a21f1f',
'600': '#921c1c',
'700': '#7a1717',
'800': '#611313',
'900': '#4f0f0f'
}
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
}