-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.html"],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '1024px',
xl: '1280px'
},
extend: {
colors: {
heroTeal: "#00B2FF",
borderGrey: "#C1C1C1",
ctaGrey: "#403E3E",
textGrey: "#383838",
iconGreen: "#5BD422",
yellowBg: "#FCF2CF",
cardOrange: "#FB8543",
cardTeal: "#2CADF5",
cardBeige: "#FAEFD3",
cardWebTeal: "#29B3D2",
webTeal: "#00A3FF",
cardGreen: "#B5FE93",
textGreen: "#14532d",
cardPurple: "#7000FF",
typeGreen: "#A6D229",
devCongressPink: "#EC008B",
},
},
animation: {
blob: "blob 7s infinite",
},
keyframes: {
blob: {
"0%": {
transform: "translate(0px, 0px) scale(1)"
},
"33%": {
transform: "translate(30px, -50px) scale(1.1)"
},
"66%": {
transform: "translate(-20px, 20px) scale(0.9)"
},
"100%": {
transform: "translate(0px, 0px) scale(1)"
},
}
}
},
plugins: [],
}