-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
35 lines (34 loc) · 1.06 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss'
import forms from '@tailwindcss/forms'
import typography from '@tailwindcss/typography'
export default {
content: ['./app/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
boxShadow: {
card: '0px 0px 1px rgba(0, 0, 0, 0.1)'
},
backgroundImage: {
'footer-texture':
"url('https://content.gotripod.com/wp-content/themes/go-tripod/WPGulp/assets/img/bg-footer-stripes.svg')",
'main-dots':
"url('https://content.gotripod.com/wp-content/themes/go-tripod/WPGulp/assets/img/bg-dots-tile-v2.svg')"
},
fontFamily: {
sans: 'Noto Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif'
},
colors: {
gray: {
150: '#f7f7f7',
175: '#ededed'
},
linkBlue: '#62bead',
headingBlue: '#4291ce',
linkOrange: '#ef7852',
highlightBlue: '#4eace0'
}
}
},
plugins: [forms, typography],
safelist: ['fancy', 'is-layout-flex']
} satisfies Config