-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
65 lines (65 loc) · 1.59 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
primarydark: "#021A28",
coreBlue: {
50: "#E3F2FD",
100: "#BBDEFB",
200: "#90CAF9",
300: "#64B5F6",
400: "#42A5F5",
500: "#2196F3",
primary: "#4285F4",
},
coreRed: {
50: "#FFEBEE",
100: "#FFCDD2",
200: "#EF9A9A",
300: "#E57373",
400: "#EF5350",
500: "#F44336",
primary: "#EA4335",
},
coreYellow: {
50: "#FFF8E1",
100: "#FFECB3",
200: "#FFE082",
300: "#FFD54F",
400: "#FFCA28",
500: "#FFC107",
primary: "#FBBC04",
},
coreGreen: {
50: "#E8F5E9",
100: "#C8E6C9",
200: "#A5D6A7",
300: "#81C784",
400: "#66BB6A",
500: "#4CAF50",
primary: "#34A853",
},
coreGrey: {
50: "#FAFAFA",
100: "#F5F5F5",
200: "#EEEEEE",
300: "#E0E0E0",
400: "#BDBDBD",
500: "#9E9E9E",
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};