-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
42 lines (41 loc) · 1 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
36
37
38
39
40
41
42
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
screens: {
mobile: '640px',
desktop: '1440px'
},
colors: {
primary: {
zetecBlue:'hsl(240, 90%, 60%)',
burntOrange: "hsl(14, 74%, 31%)",
turquoise: "hsl(174, 74%, 51%)",
alphaBurntOrange: "hsla(14, 74%, 31%, 0.4)",
alphaTurquoise: "hsla(174, 74%, 51%, 0.1)",
},
neutral: {
magnolia: 'hsl(0deg 0% 97.66%)',
},
},
fontFamily: {
andika: ['Andika', 'sans-serif'],
playFair: ['Playfair Display', 'serif'],
jakarta: ['Plus Jakarta Sans', 'sans-serif'],
},
fontWeight: {
regular: '400',
medium: '500',
bold: '700',
extrabold: '800',
}
},
},
plugins: [],
}
export default config