-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
executable file
·60 lines (60 loc) · 1.11 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
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ['"Avenir LT Std"', "sans-serif"],
},
colors: {
"elsa-primary": {
100: "#dae0ef",
200: "#b5c1df",
300: "#90a3cf",
400: "#6b84bf",
500: "#4665af",
600: "#38518c",
700: "#2a3d69",
800: "#1c2846",
900: "#0e1423",
},
"elsa-purple": {
100: "#e6dded",
200: "#cebbda",
300: "#b59ac8",
400: "#9d78b5",
500: "#8456a3",
600: "#6a4582",
700: "#4f3462",
800: "#352241",
900: "#1a1121",
},
"elsa-pink": {
100: "#fce2eb",
200: "#f9c6d7",
300: "#f7a9c3",
400: "#f48daf",
500: "#f1709b",
600: "#c15a7c",
700: "#91435d",
800: "#602d3e",
900: "#30161f",
},
"elsa-accent": {
100: "#dbf1fb",
200: "#b7e3f6",
300: "#93d4f2",
400: "#6fc6ed",
500: "#4bb8e9",
600: "#3c93ba",
700: "#2d6e8c",
800: "#1e4a5d",
900: "#0f252f",
},
},
},
},
plugins: [
require("@tailwindcss/line-clamp"),
require("@tailwindcss/forms"),
],
};