-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (50 loc) · 1.17 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
50
51
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
theme: {
fontFamily: {
sans: ['Montserrat', ...defaultTheme.fontFamily.sans],
serif: ['Merriweather', ...defaultTheme.fontFamily.serif],
title: ['Poiret One', 'Montserrat', 'sans-serif'],
},
extend: {
colors: {
'dark-blue': '#073B4C',
'light-blue': '#DFF2F6',
'light-pink': '#EEB4B3',
},
height: {
72: '18rem',
84: '21rem',
96: '24rem',
},
width: {
72: '18rem',
84: '21rem',
96: '24rem',
},
fontSize: {
'7xl': '4.5rem',
'8xl': '6rem',
'9xl': '8rem',
},
},
},
variants: {},
plugins: [
// typography for blog posts
require('@tailwindcss/typography'),
// line clamping classes
require('@tailwindcss/line-clamp'),
],
purge: {
// Learn more on https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css
content: [
'components/**/*.{vue,js}',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.{js,ts}',
'nuxt.config.{js,ts}',
'content/**/*.md',
],
},
}