-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
38 lines (38 loc) · 842 Bytes
/
tailwind.config.mjs
File metadata and controls
38 lines (38 loc) · 842 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
35
36
37
38
/** @type {import('tailwindcss').Config} */
export default {
darkMode: ['class'],
content: [
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
],
theme: {
extend: {
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)'
},
fontFamily: {
gabarito: ['Gabarito', 'sans-serif'],
MrsSaintDelafield: ['MrsSaintDelafield', 'cursive'],
playfairdisplay: ['PlayFairDisplay', 'serif'],
},
colors: {
ocre: {
30: '#FDF2DE',
100: '#E4A444',
110: '#CA933F',
120: '#B48641',
130: '#A37D43',
140: '#846639',
},
ocreNeutral:{
110: '#8A8377',
120: '#736B5D',
130: '#504634',
150: '#393225',
}
}
}
},
plugins: [require("tailwindcss-animate")],
}