-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
38 lines (38 loc) · 1.29 KB
/
tailwind.config.cjs
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} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
primary: '#063574',
secondary: '#24A3C6',
darkText: '#011430',
lightText: '#01143080',
accentText: '#011430BF',
background: 'var(--background)',
lightCard: '#B7EFFF1F'
},
fontWeight: {
black: '900'
},
backgroundImage: {
'line-mountains-peak': "url('@/assets/images/line-mountains-peak.svg')",
'line-mountains-horizon':
"url('@/assets/images/line-mountains-horizon.svg')",
mountains: "url('@/assets/images/blue-mountains-with-lake.png')",
footer: "url('@/assets/images/blue-mountains-with-lake-footer.png')",
'footer-mobile':
"url('@/assets/images/blue-mountains-with-lake-footer-mobile.png')"
},
dropShadow: {
button: '2px 2px 4px rgba(19, 47, 85, 0.3)',
'hero-mac': '0px 4px 4px rgba(0, 0, 0, 0.25)',
'mac-topbar': '0px 2px 2px rgba(0, 0, 0, 0.15)',
'mac-topbar-button': '0px 2px 4px rgba(0, 0, 0, 0.1)'
}
}
},
// This is because we define which background image to use dynamically
safelist: ['bg-line-mountains-peak', 'bg-line-mountains-horizon'],
plugins: []
}