summaryrefslogtreecommitdiffstats
path: root/tailwind.config.js
blob: 495d7fc677a1d5bf7e0566ddc4e714580afd8144 (plain)
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
module.exports = {
  content: [
    './themes/**/layouts/**/*.html',
    './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'),
  ],
}