-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
54 lines (53 loc) · 1.27 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/** @type {import('tailwindcss').Config} */
const config = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
barlow: ["Barlow", "sans-serif"],
philo: ["Philosopher", "sans-serif"],
},
colors: {
"m-blue": "#1D2A36",
"s-blue": "#2C3E50",
"t-blue": "#74A7D6",
"m-green": "#939C4E",
"m-white": "#faf7f2",
"m-black": "#232323",
},
height: {
nav: "70px",
},
width: {
"p-card": "330px",
},
gridTemplateColumns: {
"auto-fit": "repeat( auto-fill, minmax(300px, 1fr) )",
"auto-s3": "repeat( auto-fill, minmax(200px, 1fr) )",
"auto-utilities": "repeat( auto-fill, minmax(200px, 1fr) )",
},
backgroundImage: {
"landing-image":
"linear-gradient(rgba(0,0,0,.3) 70px,transparent 310px)",
},
boxShadow: {
landing: "0px 0px 20px 150px #2c4358",
},
keyframes: {
blink: {
"50%": { opacity: "25%" },
},
move: {
"50%": {
transform: "translateY(-10px)",
},
},
},
animation: {
move: "move 3s ease-in-out infinite",
},
},
},
plugins: [],
};
module.exports = config;