-
Notifications
You must be signed in to change notification settings - Fork 392
Expand file tree
/
Copy pathtailwind.config.js
More file actions
66 lines (65 loc) · 1.29 KB
/
tailwind.config.js
File metadata and controls
66 lines (65 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
const plugin = require('tailwindcss/plugin')
module.exports = {
content: [
'./pages/**/*.{js,jsx,mdx}',
'./components/**/*.{js,jsx,mdx}',
'./src/**/*.{js,jsx,mdx}',
'./content/**/*.{md,mdx}',
'./lib/**/*.{js,jsx}',
'./styles/**/*.css'
],
safelist: [
'pl-0',
'pl-1',
'pl-2',
'pl-3',
'pl-4',
'pl-5',
'pl-6',
'pl-7',
'pl-8',
'pl-9',
'pl-10'
],
theme: {
extend: {
colors: {
blue: {
1: '#005FEE',
2: '#1F5EE2'
},
dark: {
1: '#242472',
2: '#1E1E59'
},
pink: '#FF00B8',
indigo: '#6928FA',
gray: {
1: '#F4F8FB',
2: '#CCC'
},
red: '#ed6a5a',
white: '#fff',
black: '#000'
},
fontFamily: {
montserrat: ['Montserrat', 'sans-serif'],
hind: ['Hind', 'sans-serif']
}
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
plugin(({ addUtilities }) => {
addUtilities({
'.hero-gradient': {
background:
'linear-gradient(240.65deg, #85A2FF 23.88%, #2B4DFF 59.37%)'
}
})
})
]
}