-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.22 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
module.exports = {
purge: {
content: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
options: {
safelist: [
/^bg-lang-/,
/^bg-gray-300$/,
],
},
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
brand: {
'50': '#fdfcfb',
'100': '#fcefef',
'200': '#f9c8e0',
'300': '#f19ac1',
'400': '#f16a9f',
'500': '#ff4297',
'600': '#d62e62',
'700': '#b22347',
'800': '#86192e',
'900': '#551018',
},
},
fontFamily: {
logo: [
'Raleway',
'ui-sans-serif',
'system-ui',
'sans-serif',
],
}
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('tailwind-programming-language-colors'),
],
};