-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.mjs
64 lines (62 loc) · 1.73 KB
/
tailwind.config.mjs
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,yml}'],
theme: {
extend: {
// using https://uicolors.app/create
colors: {
primary: {
'50': '#f6faf3',
'100': '#e9f5e3',
'200': '#d3eac8',
'300': '#afd89d',
'400': '#82bd69',
'500': '#61a146',
'600': '#4c8435',
'700': '#3d692c',
'800': '#345427',
'900': '#2b4522',
},
secondary: {
'50': '#fbf6f5',
'100': '#f6ecea',
'200': '#f0dcd8',
'300': '#e4c3bd',
'400': '#d3a096',
'500': '#ba7264',
'600': '#aa6558',
'700': '#8e5347',
'800': '#77463d',
'900': '#643f38',
},
accent: {
'50': '#fefaec',
'100': '#fbf0ca',
'200': '#f7e190',
'300': '#f2c94c',
'400': '#f0b82f',
'500': '#e99817',
'600': '#ce7411',
'700': '#ab5212',
'800': '#8b4115',
'900': '#723615',
},
},
fontFamily: {
sans: ['Open Sans', 'sans-serif'],
serif: ['Merriweather', 'serif'],
},
borderRadius: {
'xl': '1rem',
'2xl': '2rem',
},
boxShadow: {
'lg-green': '0 10px 15px -3px rgba(34, 139, 34, 0.1), 0 4px 6px -2px rgba(34, 139, 34, 0.05)',
'2xl-green': '0 25px 50px -12px rgba(34, 139, 34, 0.25)',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}