-
Notifications
You must be signed in to change notification settings - Fork 70
/
tailwind.config.js
88 lines (88 loc) · 1.88 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/** @type {import('tailwindcss').Config} */
module.exports = {
purge: ["./src/**/*.ts", "./src/**/*.tsx"],
theme: {
container: (theme) => ({
center: true,
padding: theme("spacing.4"),
}),
inset: {
// eslint-disable-next-line prettier/prettier
0: 0,
"1/2": "50%",
},
fontFamily: {
"source-sans-pro": ["Source Sans Pro", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
},
fontSize: {
xs: ["14px", "20px"],
sm: ["16px", "24px"],
base: ["18px", "26px"],
md: ["20px", "28px"],
lg: ["24px", "30px"],
xl: ["32px", "40px"],
xxl: ["40px", "48px"],
},
cursor: {
pointer: "pointer",
grab: "grab",
},
extend: {
keyframes: {
pulsing: {
"0%, 100%": { transform: "scale(1)" },
"50%": { transform: "scale(1.1)" },
},
},
animation: {
pulsing: "pulsing 3s alternate infinite",
},
colors: {
white: {
DEFAULT: "#fff",
},
grey: {
DEFAULT: "#ccc",
},
neutral: {
400: "#808080",
500: "#6e6e6e",
DEFAULT: "#ccc",
},
orange: {
600: "#ea580c",
DEFAULT: "#ff9933",
},
red: {
DEFAULT: "#ff5268",
},
blue: {
DEFAULT: "#007EA8",
100: "#f5f8fb",
300: "#53bcdf",
},
navy: {
200: "#eef2f5",
300: "#506c85",
DEFAULT: "#324353",
},
pink: {
100: "#fbeae9",
300: "#e87d7d",
600: "#e11d48",
DEFAULT: "#be123c",
},
green: {
100: "#f5fbf7",
200: "#d9ead3",
300: "#46b760",
400: "#38761d",
DEFAULT: "#218838",
},
},
},
},
variants: {},
plugins: [],
};