-
Notifications
You must be signed in to change notification settings - Fork 79
/
tailwind.config.js
52 lines (51 loc) · 1.12 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('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
important: true,
content: ['./docs/**/*.{md,html,js}','./build/**/*.{md,html,js}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
fontFamily: {
usual: ['usual', 'system-ui', 'sans-serif'],
},
extend: {
colors: {
purple: {
dark: '#352670',
lighter: '#544E72',
light: '#5379DA',
lightest: '#E8E8F9',
regular: '#787df2',
tint: '#D8D5EE',
new: '#413185',
},
red: '#F62958',
gray: '#e5e6f0',
brand: '#413185',
},
fontSize: {
'1.75': '1.75rem',
'2' : '2rem',
'21': '1.3125rem',
'38': '2.375rem',
},
spacing: {
'15': '3.75rem',
},
borderRadius: {
'5': '5px',
'20': '1.25rem',
},
boxShadow: {
'custom-black': '0 2px 25px rgba(0,0,0,0.1)',
},
lineHeight: {
'61': '3.6875rem',
'55': '3.3125rem',
}
}
},
plugins: [
require("daisyui"),
]
}