forked from fossology/FOSSologyUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
94 lines (94 loc) · 2.08 KB
/
tailwind.config.js
File metadata and controls
94 lines (94 loc) · 2.08 KB
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
89
90
91
92
93
94
const config = {
content: [
"./src/app/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
spacing: {
'page': '32px',
'gutter': '24px',
},
colors: {
// Primary
primary: {
900: "#C31730",
800: "#EC4958",
700: "#F57B85",
100: "#FFCED7",
},
// Secondary
secondary: {
900: "#101010",
700: "#807F82",
},
// Tertiary 1
tertiary1: {
900: "#000B54",
800: "#004494",
600: "#4D7CB7",
400: "#B0C4DE",
200: "#DEE7F2",
},
// Tertiary 2
tertiary2: {
900: "#513DA8",
800: "#6D67D9",
600: "#9BA1F4",
400: "#D3D6FF",
200: "#EEEFFF",
},
// Neutrals
neutral: {
900: "#303030",
800: "#616161",
700: "#888888",
600: "#A9A9A9",
400: "#CECECE",
300: "#E1E1E1",
200: "#EDEDED",
100: "#F6F6F6",
},
// Alerts
error: {
100: "#FFEBEE",
500: "#E03C31",
700: "#5F2120",
},
warning: {
100: "#FFF3E0",
500: "#EF6C00",
700: "#663C00",
},
info: {
100: "#E1F5FE",
500: "#0079BA",
700: "#014361",
},
success: {
100: "#E8F5E9",
500: "#2E7D32",
700: "#1E4620",
},
},
fontFamily: {
inter: ['var(--font-inter)', 'sans-serif'],
},
fontSize: {
base: ["14px", "20px"], // 14px font size with ~20px line-height
},
letterSpacing: {
normal: "0px",
},
textColor: {
default: "#101010",
},
spacing: {
13: "3.25rem", // 52px
18: "4.5rem", // 72px
},
},
},
plugins: [],
}
export default config