-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.22 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
black: "#000000",
white: "#ffffff",
primary: "#ffffff",
"gray-050": "#f9f9f9",
"gray-100": "#ebebeb",
"gray-200": "#dbdbdb",
"gray-300": "#bdbdbd",
"gray-400": "#929292",
"gray-500": "#6e6e6e",
"gray-600": "#545454",
"gray-700": "#3d3d3d",
"gray-800": "#1a1a1a",
"gray-900": "#000",
"blue-050": "#f2f6fc",
"blue-100": "#e0eeff",
"blue-200": "#d1e5ff",
"blue-300": "#b8d3ff",
"blue-400": "#79a4ff",
"blue-500": "#4d7cff",
"blue-600": "#2660ff",
"blue-700": "#004cff",
"blue-800": "#003fd3",
"blue-900": "#0038ba",
"badge-success": "#a7f3d033",
"badge-failed": "#FEE2E2",
green: "#a7f3d033",
},
extend: {
colorPrimary: "#000000",
colorInfo: "#000000",
colorSuccess: "#caffaf",
colorWarning: "#fce2ae",
colorError: "#ffa0a2",
borderRadius: 2,
wireframe: true,
fontFamily: "Varela",
fontFamily: {
varela: ['"Varela"', "sans-serif"],
},
},
},
plugins: [require("tailwind-scrollbar")],
};