-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (31 loc) · 925 Bytes
/
tailwind.config.js
File metadata and controls
31 lines (31 loc) · 925 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
// eslint-disable-next-line no-undef
const defaultTheme = require('tailwindcss/defaultTheme');
// eslint-disable-next-line no-undef
module.exports = {
content: ['./src/**/*.html', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
fontFamily: {
sans: ['Stolzl', ...defaultTheme.fontFamily.sans],
serif: ['Manofa', ...defaultTheme.fontFamily.serif],
mono: ['BDR Mono', ...defaultTheme.fontFamily.mono],
heading: ['Manofa', 'serif'],
body: ['Stolzl', 'sans-serif'],
},
extend: {
colors: {
brandRed: '#FE1D5B',
brandBlue: '#1A28D1',
brandGreen: '#11F487',
},
backgroundImage: {
hero: "url('/img/bg_northStar.png')",
fire: "url('/img/bg_fire.png')",
aurora: "url('/img/dh_aurora.png')",
},
backgroundPosition: {
herotop: 'right top 300px',
},
},
},
plugins: ['prettier-plugin-tailwindcss'],
};