-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.58 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
52
53
54
55
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.clj", "./content/**/*.md"],
theme: {
extend: {
colors: {
'deep-black': '#000000',
'gentle-black': '#372326',
'gentle-white': '#ccc7c0',
'sepia': '#ffead8',
'off-white': '#d3c6aa',
'hl-sepia' : '#fad8bf',
'leaf-green' : '#83c092',
'fire-red' : '#e67e6f',
'pale-blue': '#7fbbb3'
},
fontFamily: {
'ibm-plex-serif': ['IBM Plex Serif', 'font-serif'],
'ibm-plex-sans': ['IBM Plex Sans', 'sans-serif'],
'teranoptia': ['Teranoptia']
},
textColor: 'off-white',
typography: theme => ({
DEFAULT: {
css: {
maxWidth: '100%',
"code::before": {
content: "none",
},
"code::after": {
content: "none",
},
a: {
// color: theme('colors.pale-blue')
},
'a:hover': {
// color: theme('colors.pale-blue')
},
'--tw-prose-bold': theme('colors.pale-blue'),
'--tw-prose-code': theme('colors.pale-blue'),
'--tw-prose-headings': theme('colors.fire-red'),
'--tw-prose-links': theme('colors.leaf-green'),
'--tw-prose-quotes': theme('colors.fire-red'),
'--tw-prose-quote-borders': theme('colors.off-white'),
'--tw-prose-body': theme('colors.off-white'),
}
},
invert: {}
})
}
},
plugins: [
require('@tailwindcss/typography')
]
}