-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtailwind.config.js
38 lines (37 loc) · 1.02 KB
/
tailwind.config.js
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} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./layouts/**/*.html',
'./content/**/*.md',
'./themes/**/*.{html,md}',
],
theme: {
extend: {
backgroundImage: {
"landing-top-img": "url('/images/landing-top-bg.svg')",
"empower-trust": "url('/images/bg-empowering-trust.svg')",
},
boxShadow: {
'top-left-to-bottom-right': '1px 1px 1px 1px rgba(63,65,83, 0.5), 1px 1px 1px 1px rgba(140,144,185, 1)',
'single-footer-shadow': '0px -30px 20px rgba(132, 132, 132, 0.11)',
"get-pac": "0px 0px 40px rgba(89, 64, 246, 0.3)"
},
fontFamily: {
'sans': ['"Inter"','sans-serif', ...defaultTheme.fontFamily.sans],
},
},
colors: {
"light-bg-to": "#F3F3F3",
"light-text-blue": "#131440",
},
container: {
padding: "10px"
},
},
plugins: [
require('daisyui'),
require('@tailwindcss/typography'),
],
darkMode: "selector",
}