forked from elhakimyasya/Webium-Blogger-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
23 lines (23 loc) · 980 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
23 lines (23 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = {
darkMode: "class",
content: [
"./src/*.{xml, html, js}",
"./src/partials/*/*.{xml, html, js}",
"./src/partials/*/*/*.{xml, html, js}",
"./src/assets/scripts/**/*.{xml, html, js}",
],
theme: {
extend: {
fontFamily: {
"webium": 'webium, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
"webium-alt": '"webium alt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"'
}
},
},
plugins: [
require('tailwindcss'),
require('autoprefixer'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/typography'),
],
}