-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
47 lines (46 loc) · 1010 Bytes
/
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
/** @type {import('tailwindcss/types').Config} */
const config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./features/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
brand: {
blue: {
500: "#198EB6",
},
gray: {
400: "rgba(217, 217, 217, 0.30)",
500: "rgba(133, 133, 133, 0.30)",
},
},
},
fontSize: {
"brand-xl": "1.375rem",
"brand-2xl": "1.625rem",
},
lineHeight: {
"brand-xl": "1.375rem",
"brand-2xl": "1.625rem",
},
keyframes: {
"scalling-dots": {
"0%, 100%": {
transform: "scale(0)",
},
"40%, 60%": {
transform: "scale(1)",
},
},
},
animation: {
"scalling-dots": "scalling-dots 1s infinite ease backwards",
},
},
},
plugins: [],
};
module.exports = config;