-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
44 lines (43 loc) · 1.15 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
const withMT = require("@material-tailwind/html/utils/withMT");
module.exports = withMT({
darkMode: false, // or 'media' or 'class'
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
content: ['layouts/**/*.html', 'content/**/*.md'],
theme: {
colors: {
'project': '#AEFFEC',
'specialist': '#FF80DB',
'skyblue': {
500: '00D1FF',
},
'aeroblue':{
500: '#AEFFEC'
},
'lightpink':{
500: '#ff80db'
},
'blog': 'rgba(228, 255, 54, 0.25)',
'blog-h': 'rgba(228, 255, 54, 1)',
},
extend: {
backgroundImage: {
'header-top': "url('/images/okf-report-2022-top-bg.png')",
'bottom': "url('/images/background-bottom.png')",
'yellow-blob': "url('/images/yellow-bg.png')",
'blue-blob': "url('/images/blue-bg.png')",
'light-blue-blob': "url('/images/light-blue-blob.png')",
'purple-blob': "url('/images/purple-bg.png')"
}
},
fontFamily: {
'body': ['"DM Sans"'],
'dmsans': ['"DM Sans"'],
'miriam': ['"Miriam Libre"']
},
},
variants: {},
plugins: [],
})