forked from yonatanmgr/opensource-il-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (28 loc) · 781 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (28 loc) · 781 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
boxShadow: {
'3xl': '0px 0px 30px hsl(222, 50%, 30%)',
'4xl': '0px 0px 30px hsla(1, 0%, 0%, 0.4)',
},
colors: {
'myblue': "hsl(222, 50%, 30%)",
'mydarkblue': "hsl(222, 65%, 10%)",
'readmedark': "hsl(222, 28%, 7%)",
'buttonhover': "hsl(222, 63%, 15%)",
'buttonactive': "hsl(222, 63%, 20%)",
'gradientfrom': "hsla(222, 52%, 15%)",
'gradientto': "hsl(222, 61%, 11%)",
}
},
},
plugins: [],
}