-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
31 lines (31 loc) · 934 Bytes
/
Copy pathtailwind.config.mjs
File metadata and controls
31 lines (31 loc) · 934 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
screens: {
'desktop': '980px',
},
colors: {
primary: '#3e8d8b',
secondary: '#40506d',
accent: '#d8c8e1',
neutral: {
1: '#f3f4f7',
2: '#f5f7f9',
light: '#f3f4f7',
DEFAULT: '#f5f7f9',
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
serif: ['"Playfair Display"', 'serif'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'spin-slow': 'spin 3s linear infinite',
},
},
},
plugins: [],
}