-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
34 lines (33 loc) · 916 Bytes
/
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
const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./_drafts/**/*.html',
'./_includes/**/*.html',
'./_layouts/**/*.html',
'./_posts/*.md',
'./*.md',
'./*.html',
],
theme: {
colors: {
current: 'currentColor',
'dark': '#0D1017',
'light': '#FCFCFC',
'black': '#0F131A',
'white': '#FCFCFC',
'gray': '#636A72',
'light-gray': '#E7EAED',
'dark-gray': '#1A1F28',
'green': '#AAD94C',
'orange': '#FF8F40',
},
extend: {
fontFamily: {
'sans': ['Inter', ...defaultTheme.fontFamily.sans],
'serif': ['Merriweather', ...defaultTheme.fontFamily.serif],
},
}
},
plugins: [],
}