-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 800 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 800 Bytes
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
// const plugin = require('tailwindcss/plugin')
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./assets/**/*.css",
"./components/*.{vue,js}",
"./components/**/*.{vue,js}",
"./content/*.md",
"./pages/*.vue",
"./layouts/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
stone: colors.stone,
teal: colors.teal,
amber: colors.amber,
},
extend: {
fontFamily: {
arvo: ["Arvo", "serif"],
lora: ["Lora", "serif"],
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('./assets/js/components')
],
}