-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
34 lines (32 loc) · 941 Bytes
/
tailwind.config.ts
File metadata and controls
34 lines (32 loc) · 941 Bytes
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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
fourFourThreeElevatr: 'url("/images/443elevatr-bg.jpg")',
radialGradient: 'radial-gradient(var(--tw-gradient-stops))',
polebridge: 'url("/images/polebridge-map.jpg")',
robMosher: 'url("/images/robmosher-antonelli-pan-armonica.jpg")',
thirtyOneChorales: 'url("/images/31-chorales-score-and-pencil.jpg")',
},
colors: {
bright: '#0896A6',
},
fontFamily: {
sans: ['var(--font-poppins)', 'sans-serif'],
title: ['var(--font-oswald)', 'sans-serif'],
},
fontSize: {
'1.5xl': ['1.375rem', { lineHeight: '1.875rem' }], // 22px font size, 30px line height
},
maxWidth: {
layout: '1600px',
},
},
},
plugins: [],
}
export default config