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
|
module.exports = {
content: [
'./themes/**/layouts/**/*.html',
'./themes/**/assets/js/**/*.js',
'./layouts/**/*.html',
],
theme: {
extend: {
screens: {
'lg': '1060px',
},
colors: {
bg: 'var(--bg)',
'bg2': 'var(--bg2)',
surface: 'var(--surface)',
border: 'var(--border)',
accent: 'var(--accent)',
'accent2': 'var(--accent2)',
'accent-glow': 'var(--accent-glow)',
text: 'var(--text)',
'text-dim': 'var(--text-dim)',
muted: 'var(--muted)',
},
fontFamily: {
body: ['IBM Plex Sans', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
oxanium: ['Oxanium', 'monospace'],
},
opacity: {
80: '0.8',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}
|