-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (35 loc) · 981 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
35
36
37
const { url } = require('inspector')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"https://use.typekit.net/vvu5kgt.css",
],
theme: {
extend: {},
colors: {
customBG: '#3e678a',
customHeading: '#754305',
customSubtext: '#754305',
customText: '#754305',
customTitle: '#754305',
customLine: '#a66311',
customBlockquote: '#a14e00',
// customSubBG: '#ebebeb',
},
backgroundImage: {
'grid-background': "url('/images/new-grid.jpg')",
},
fontFamily: {
'arvo': ['arvo', 'serif'],
'poppins': ['poppins', 'sans-serif'],
'philosopher': ['philosopher', 'sans-serif'],
'cabin-sketch-bold': ['cabin-sketch-bold', 'sans-serif'],
'cabin-sketch-regular': ['cabin-sketch-regular', 'sans-serif'],
},
},
plugins: [
require('@tailwindcss/typography'),
],
}